• 数据结构--冰壶C++


    Description

    On Planet MM-21, after their Olympic games this year, curling is getting popular. But the rules are somewhat different from ours. The game is played on an ice game board on which a square mesh is marked. They use only a single stone. The purpose of the game is to lead the stone from the start to the goal with the minimum number of moves.

    Fig. 1 shows an example of a game board. Some squares may be occupied with blocks. There are two special squares namely the start and the goal, which are not occupied with blocks. (These two squares are distinct.) Once the stone begins to move, it will proceed until it hits a block. In order to bring the stone to the goal, you may have to stop the stone by hitting it against a block, and throw again.


    Fig. 1: Example of board (S: start, G: goal)

    The movement of the stone obeys the following rules:

    At the beginning, the stone stands still at the start square.
    The movements of the stone are restricted to x and y directions. Diagonal moves are prohibited.
    When the stone stands still, you can make it moving by throwing it. You may throw it to any direction unless it is blocked immediately(Fig. 2(a)).
    Once thrown, the stone keeps moving to the same direction until one of the following occurs:
    The stone hits a block (Fig. 2(b), (c)).
    The stone stops at the square next to the block it hit.
    The block disappears.
    The stone gets out of the board.
    The game ends in failure.
    The stone reaches the goal square.
    The stone stops there and the game ends in success.
    You cannot throw the stone more than 10 times in a game. If the stone does not reach the goal in 10 moves, the game ends in failure.

    Fig. 2: Stone movements

    Under the rules, we would like to know whether the stone at the start can reach the goal and, if yes, the minimum number of moves required.

    With the initial configuration shown in Fig. 1, 4 moves are required to bring the stone from the start to the goal. The route is shown in Fig. 3(a). Notice when the stone reaches the goal, the board configuration has changed as in Fig. 3(b).


    Fig. 3: The solution for Fig. D-1 and the final board configuration

    Input

    The input is a sequence of datasets. The end of the input is indicated by a line containing two zeros separated by a space. The number of datasets never exceeds 100.

    Each dataset is formatted as follows.

    the width(=w) and the height(=h) of the board
    First row of the board
    ...
    h-th row of the board

    The width and the height of the board satisfy: 2 <= w <= 20, 1 <= h <= 20.

    Each line consists of w decimal numbers delimited by a space. The number describes the status of the corresponding square.

    0    vacant square
    1    block
    2    start position
    3    goal position
    The dataset for Fig. D-1 is as follows:

    6 6
    1 0 0 2 1 0
    1 1 0 0 0 0
    0 0 0 0 0 3
    0 0 0 0 0 0
    1 0 0 0 0 1
    0 1 1 1 1 1

    Output

    For each dataset, print a line having a decimal integer indicating the minimum number of moves along a route from the start to the goal. If there are no such routes, print -1 instead. Each line should not have any character other than this number.
     

    1. // 冰壶poj3009.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
    2. //
    3. #include <iostream>
    4. using namespace std;
    5. int w, h, board[21][21], book[21][21];
    6. int endx, endy, startx, starty,minn=11;
    7. void init() {
    8. for (int m = 1;m <= w;m++)
    9. for (int n = 1;n <= h;n++) {
    10. book[m][n] = 0;
    11. }
    12. }
    13. int getNewdir(int tx, int ty,int k) {
    14. if (k == 0) {
    15. for (int i = ty;i <= h;i++)
    16. {
    17. if (board[tx][i] == 1){
    18. board[tx][i] = 0;
    19. // cout<<i<<endl;
    20. return i-1;
    21. }
    22. if (board[tx][i] == 3)
    23. return i;
    24. }
    25. }
    26. else if (k == 1) {
    27. for (int i = tx ;i <= w;i++)
    28. {
    29. if (board[i][ty] == 1) {
    30. board[i][ty] = 0;
    31. return i - 1;
    32. }
    33. if (board[i][ty] == 3)
    34. return i;
    35. }
    36. }
    37. else if (k == 2) {
    38. for (int i = ty ;i >= 1;i--)
    39. {
    40. if (board[tx][i] == 1){
    41. board[tx][i] = 0;
    42. return i + 1;}
    43. if (board[tx][i] == 3)
    44. return i;
    45. }
    46. }
    47. else {
    48. for (int i = tx - 1;i >= 1;i--)
    49. {
    50. if (board[i][ty] == 1){
    51. board[i][ty] = 0;
    52. return i + 1;}
    53. if (board[i][ty] == 3)
    54. return i;
    55. }
    56. }
    57. }
    58. void dfs(int x,int y,int step) {
    59. //cout << x << y <<step<< endl;
    60. //for(int i=1;i<=w;i++)
    61. //for(int j=1;j<=h;j++)
    62. //cout<<board[i][j];
    63. //cout<<endl;
    64. if (board[x][y] == 3)
    65. {
    66. if (step < minn) {
    67. minn = step;
    68. }
    69. return;
    70. }
    71. if (step==10) {
    72. return;
    73. }
    74. int tx, ty;
    75. int next[4][2] = {
    76. {0,1},{1,0},{0,-1},{-1,0}
    77. };//右下左上
    78. for (int k = 0;k < 4;k++) {
    79. tx = x + next[k][0];
    80. ty = y + next[k][1];
    81. if (tx<1 || ty<1 || tx>w || ty>h)
    82. continue;
    83. if (board[tx][ty] == 0 && book[tx][ty] == 0||board[tx][ty]==3||board[tx][ty]==2) {
    84. book[tx][ty] = 1;
    85. //四个方向,通过k值确认。
    86. if (k==0||k==2) {
    87. dfs(tx, getNewdir(tx, ty, k), step + 1);
    88. }
    89. else {
    90. dfs(getNewdir(tx, ty,k), ty, step + 1);
    91. }
    92. //book[tx][ty] = 0;
    93. }
    94. }
    95. }
    96. int main()
    97. {
    98. int T;
    99. cin >> T;
    100. for (int i = 1;i <= T;i++) {
    101. //行数列数
    102. cin >> w >> h;
    103. for (int m = 1;m <= w;m++)
    104. for (int n = 1;n <= h;n++){
    105. cin >> board[m][n];
    106. if (board[m][n] == 2) {
    107. startx = m;
    108. starty = n;
    109. }
    110. if (board[m][n] == 3) {
    111. endx = m;
    112. endy = n;
    113. }
    114. }
    115. //cout << startx << starty << endl;
    116. //for (int m = 1;m <= w;m++) {
    117. //for (int n = 1;n <= h;n++) {
    118. // cout << board[m][n]<<" ";
    119. // }cout << endl;
    120. // }
    121. //return 0;
    122. init();
    123. dfs(startx,starty,0);
    124. if (minn == 11) {
    125. cout << -1 << endl;
    126. }
    127. else {
    128. cout << minn << endl;
    129. }
    130. minn = 11;
    131. }
    132. return 0;
    133. }

  • 相关阅读:
    【CVPR 2022】Deblur-NeRF: Neural Radiance Fields from Blurry Images
    Python内置函数--iter()&next()
    【PAT乙级】1024 科学计数法
    Python全栈开发[基础-01] 计算机基础入门
    6.19-MyBatis源码—体系介绍和配置文件解析源码剖析
    01| GitOps与DevOps 主流系统
    springboot实现国际化
    《Improved Techniques for Training GANs》-论文阅读笔记
    React跨域请求,http-proxy-middleware代理服务,Axios实现前端请求
    网工常用工具——tcping
  • 原文地址:https://blog.csdn.net/qq_63533863/article/details/126465023