UVA - 227 Puzzle

来源:互联网 发布:女王级战列舰 知乎 编辑:程序博客网 时间:2024/06/06 09:09
Puzzle 
              Time limit: 3.000 seconds
A children's puzzle that was popular 30 years ago consisted of a 5x5 frame which contained 24 small squares of equal size. A unique letter of the alphabet was printed on each small square. Since there were only 24 squares within the frame, the frame also contained an empty position which was the same size as a small square. A square could be moved into that empty position if it were immediately to the right, to the left, above, or below the empty position. The object of the puzzle was to slide squares into the empty position so that the frame displayed the letters in alphabetical order.
The illustration below represents a puzzle in its original configuration and in its configuration after the following sequence of 6 moves:
1) The square above the empty position moves.
2) The square to the right of the empty position moves.
3) The square to the right of the empty position moves.
4) The square below the empty position moves.
5) The square below the empty position moves.
6) The square to the left of the empty position moves.


Write a program to display resulting frames given their initial configurations and sequences of moves.
Input
Input for your program consists of several puzzles. Each is described by its initial configuration and the sequence of moves on the puzzle. The first 5 lines of each puzzle description are the starting configuration. Subsequent lines give the sequence of moves.
The first line of the frame display corresponds to the top line of squares in the puzzle. The other lines follow in order. The empty position in a frame is indicated by a blank. Each display line contains exactly 5 characters, beginning with the character on the leftmost square (or a blank if the leftmost square is actually the empty frame position). The display lines will correspond to a legitimate puzzle.
The sequence of moves is represented by a sequence of As, Bs, Rs, and Ls to denote which square moves into the empty position. A denotes that the square above the empty position moves; B denotes that the square below the empty position moves; L denotes that the square to the left of the empty position moves; R denotes that the square to the right of the empty position moves. It is possible that there is an illegal move, even when it is represented by one of the 4 move characters. If an illegal move occurs, the puzzle is considered to have no final configuration. This sequence of moves may be spread over several lines, but it always ends in the digit 0. The end of data is denoted by the character Z.
Output
Output for each puzzle begins with an appropriately labeled number (Puzzle #1, Puzzle #2, etc.). If the puzzle has no final configuration, then a message to that effect should follow. Otherwise that final configuration should be displayed.
Format each line for a final configuration so that there is a single blank character between two adjacent letters. Treat the empty square the same as a letter. For example, if the blank is an interior position, then it will appear as a sequence of 3 blanks - one to separate it from the square to the left, one for the empty position itself, and one to separate it from the square to the right.
Separate output from different puzzle records by one blank line.
Note: The first record of the sample input corresponds to the puzzle illustrated above.

Sample Input

TRGSJ
XDOKI
M VLN
WPABE
UQHCF
ARRBBL0
ABCDE
FGHIJ
KLMNO
PQRS
TUVWX
AAA
LLLL0
ABCDE
FGHIJ
KLMNO
PQRS
TUVWX
AAAAABBRRRLL0
Z
Sample Output
Puzzle #1:
T R G S J
X O K L I
M D V B N
W P A E
U Q H C F
Puzzle #2:
A B C D
F G H I E
K L M N J
P Q R S O
T U V W X
Puzzle #3:

This puzzle has no final configuration.

题意不难理解,读入一个5*5的网络然后进行若干操作以后输出结果。

此题关键在于正确读入数据、判断退出条件以及最后输出数据时候的格式。

[cpp] view plain copy
  1. #include <iostream>  
  2. #include<cstdio>  
  3. #define maxn 1005  
  4. using namespace std;  
  5. int main(){  
  6. char a[5][5];  
  7. int flag=1,sflag=0;  
  8. int sx,sy,cnt=0;  
  9. char order[maxn];  
  10. while(1)  
  11. {  
  12.     flag=1;  
  13.     cnt++;  
  14.   
  15. for(int i=0;i<5;i++)  
  16.     {cin.getline(a[i],6); //为了读入空格,使用getline读入字符串,  
  17. if(a[i][0]=='Z') {flag=0; break;}   
  18.     }  
  19.   
  20.     if(!flag) break;  
  21.     for(int i=0;i<5;i++)  
  22.         for(int j=0;j<5;j++)  
  23.     if(a[i][j]==' ') { sx=i; sy=j;  }//找出空格对应的位置  
  24. for(int i=0;i<=maxn;i++)  
  25. {cin>>order[i];  
  26. if(order[i]=='0') {  order[i+1]='\0'break;}  
  27. }  
  28. getchar();//将0后面的回车符记录下,否则会被下一次循环开头的cin.getline读取。  
  29. char t;  
  30. if(sflag) cout<<endl;  
  31. sflag=1;  
  32. cout<<"Puzzle #"<<cnt<<':'<<endl; //放在switch前面,以便各种情况下都可以输入puzzle的序号  
  33. for(int i=0;order[i]!='0';i++)   
  34. {  
  35.     switch (order[i])  
  36.     {  
  37. case 'B':  
  38.     {if(sx+1==5) {cout<<"This puzzle has no final configuration."<<endl; flag=2; break;}  
  39.        t= a[sx][sy];  
  40.        a[sx][sy]=a[sx+1][sy];  
  41.        a[sx+1][sy]=t;  
  42.     sx++;  
  43.     break;  
  44.     }  
  45. case 'A':  
  46.     {   if(sx-1==-1) {cout<<"This puzzle has no final configuration."<<endl;flag=2; break;  }  
  47.         t= a[sx][sy];  
  48.        a[sx][sy]=a[sx-1][sy];  
  49.        a[sx-1][sy]=t;  
  50.        sx--;  
  51.        break;  
  52.     }  
  53. case 'L':  
  54.     {    if(sy-1==-1) {cout<<"This puzzle has no final configuration."<<endl; flag=2; break;}  
  55.     t= a[sx][sy];  
  56.        a[sx][sy]=a[sx][sy-1];  
  57.        a[sx][sy-1]=t;  
  58.        sy--;  
  59.         break;  
  60.     }  
  61. case 'R':  
  62.     {  if(sy+1==5) {cout<<"This puzzle has no final configuration."<<endl; flag=2; break;}  
  63.          t= a[sx][sy];  
  64.        a[sx][sy]=a[sx][sy+1];  
  65.        a[sx][sy+1]=t;  
  66.         sy++;  
  67.         break;  
  68.     }  
  69.   
  70.   
  71.     }  
  72. if(flag==2) break;  
  73. }  
  74. if(flag==2) continue;  
  75.   
  76. for(int i=0;i<5;i++)  
  77.     {for(int j=0;j<5;j++)  
  78.     {  if(j) cout<<" "<<a[i][j];  
  79. else  cout<< a[i][j];  
  80.     }  
  81.    cout<<endl;  
  82.     }  
  83.   
  84. }  
  85. return 0;  
  86. }  
0 0
原创粉丝点击