UVa227 - Puzzle

举报
小哈里 发表于 2022/05/10 22:09:30 2022/05/10
【摘要】 //UVa227 - Puzzle#include<stdio.h>void swap(char *a, char *b){ char t = *a; *a = *b; *b = t;}int main(){ //freopen("date.in","r",stdin); //freopen("date.out","w",s...

  
  1. //UVa227 - Puzzle
  2. #include<stdio.h>
  3. void swap(char *a, char *b){
  4. char t = *a; *a = *b; *b = t;
  5. }
  6. int main(){
  7. //freopen("date.in","r",stdin);
  8. //freopen("date.out","w",stdout);
  9. char s[6][6] = {0}, n;
  10. int x1, y1, x2, y2;
  11. int i, j, is = 0;
  12. for(i = 0; i<5; i++){
  13. for(j = 0; j<5; j++){
  14. s[i][j] = getchar();
  15. if(s[i][j] == ' ')x1 = x2 = i, y1 = y2 = j;
  16. }
  17. getchar();
  18. //printf("%s\n",s[i]);
  19. }
  20. while(scanf("%c",&n) && n != '0'){
  21. switch(n){
  22. case'A': x2 -= 1; break;
  23. case'B': x2 += 1; break;
  24. case'L': y2 -= 1; break;
  25. case'R': y2 += 1; break;
  26. default: is = 1;
  27. }
  28. swap(&s[x1][y1],&s[x2][y2]);
  29. x1 = x2; y1 = y2;
  30. }
  31. if(is) printf("This puzzle has no final configuration.\n");
  32. else{
  33. for(i = 0; i<5; i++)
  34. printf("%s\n",s[i]);
  35. }
  36. return 0;
  37. }
  38. /*
  39. Sample Input:
  40. TRGSJ
  41. XDOKI
  42. M VLN
  43. WPABE
  44. UQHCF
  45. ARRBBL0
  46. ABCDE
  47. FGHIJ
  48. KLMNO
  49. PQRS
  50. TUVWX
  51. AAA
  52. LLLL0
  53. ABCDE
  54. FGHIJ
  55. KLMNO
  56. PQRS
  57. TUVWX
  58. AAAAABBRRRLL0
  59. Z
  60. ------------------------
  61. Sample Output:
  62. Puzzle #1:
  63. T R G S J
  64. X O K L I
  65. M D V B N
  66. W P A E
  67. U Q H C F
  68. Puzzle #2:
  69. A B C D
  70. F G H I E
  71. K L M N J
  72. P Q R S O
  73. T U V W X
  74. Puzzle #3:
  75. This puzzle has no final configuration.
  76. */

文章来源: gwj1314.blog.csdn.net,作者:小哈里,版权归原作者所有,如需转载,请联系作者。

原文链接:gwj1314.blog.csdn.net/article/details/54846728

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。