Curling 2.0
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.
The movement of the stone obeys the following rules:
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).
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 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.
The dataset for Fig. D-1 is as follows:
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. Sample Input 2 1 3 2 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 6 1 1 1 2 1 1 3 6 1 1 0 2 1 1 3 12 1 2 0 1 1 1 1 1 1 1 1 1 3 13 1 2 0 1 1 1 1 1 1 1 1 1 1 3 0 0 Sample Output 1 4 -1 4 10 -1 Source |
1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 5 using namespace std; 6 7 int row,col,map[30][30]; 8 int ans; 9 10 int dir[4][2]={{-1,0},{1,0},{0,-1},{0,1}}; 11 12 void DFS(int si,int sj,int step){ 13 if(step>10) 14 return ; 15 int tx,ty,flag; 16 for(int i=0;i<4;i++){ 17 flag=0; 18 tx=si+dir[i][0]; 19 ty=sj+dir[i][1]; 20 while(tx>=0 && tx<row && ty>=0 && ty<col && map[tx][ty]==0){ 21 tx+=dir[i][0]; 22 ty+=dir[i][1]; 23 flag=1; 24 } 25 if(tx<0 || tx>=row || ty<0 || ty>=col) 26 continue ; 27 if(tx>=0 && tx<row && ty>=0 && ty<col && map[tx][ty]==3){ 28 if(step+1<ans) 29 ans=step+1; 30 return ; 31 } 32 if(flag && tx>=0 && tx<row && ty>=0 && ty<col && map[tx][ty]==1){ 33 map[tx][ty]=0; 34 int x=tx-dir[i][0]; 35 int y=ty-dir[i][1]; 36 DFS(x,y,step+1); 37 map[tx][ty]=1; 38 } 39 } 40 } 41 42 int main(){ 43 44 //freopen("input.txt","r",stdin); 45 46 while(~scanf("%d%d",&col,&row)){ 47 if(col==0 && row==0) 48 break; 49 int x,y; 50 for(int i=0;i<row;i++) 51 for(int j=0;j<col;j++){ 52 scanf("%d",&map[i][j]); 53 if(map[i][j]==2){ 54 x=i; 55 y=j; 56 map[i][j]=0; //注意这里,找到起点后得修改为0 57 } 58 } 59 ans=11; 60 DFS(x,y,0); 61 if(ans<=10) 62 printf("%d\n",ans); 63 else 64 printf("-1\n"); 65 } 66 return 0; 67 }