当前位置:   article > 正文

Transformations_kotlin transformations

kotlin transformations

http://train.usaco.org/usacoprob2?a=lZwR4PTPkId&S=transform

题目大意:

矩阵A执行如下操作是否能到矩阵C:

#1:顺时针旋转90°

#2:顺时针旋转180°

#3:顺时针选择270°

#4:左右对称

#5:对称后旋转90°——270°

#6:不改变

#7:不能变到

  1. <pre name="code" class="html">#include <iostream>
  2. #include <fstream>
  3. #include <cstring>
  4. using namespace std;
  5. char a[10][10], b[10][10], c[10][10];
  6. //a,原矩阵;b,用来操作的矩阵;c,目标矩阵
  7. bool cpy(int n)
  8. {
  9. for(int i = 0; i < n; i++)
  10. if(strcmp(b[i], c[i])) return false;
  11. return true;
  12. }
  13. void p1(int n) //顺时针旋转90°
  14. {
  15. char d[15][15];
  16. for(int i = 0; i < n; i++) strcpy(d[i], b[i]);
  17. for(int i = 0; i < n; i++)
  18. for(int j = 0; j < n; j++)
  19. b[i][j] = d[n - j - 1][i];
  20. }
  21. void p2(int n) //左右对称
  22. {
  23. for(int i = 0; i < n; i++)
  24. for(int j = n - 1; j >= 0; j--)
  25. b[i][n - 1 - j] = a[i][j];
  26. }
  27. int main()
  28. {
  29. ifstream fin("transform.in");
  30. ofstream fout("transform.out");
  31. int n;
  32. while(fin >> n)
  33. {
  34. bool f = false, f1 = false;
  35. for(int i = 0; i < n; i++)
  36. {
  37. fin >> a[i];
  38. strcpy(b[i], a[i]);
  39. }
  40. for(int i = 0; i < n; i++)
  41. fin >> c[i];
  42. if(cpy(n)) f1 = true;
  43. for(int i = 1; i <= 3; i++) //#1-#3 顺时针旋转90°---270°
  44. {
  45. p1(n);
  46. if(cpy(n))
  47. {
  48. f = true;
  49. fout << i << endl;
  50. break;
  51. }
  52. }
  53. if(!f)
  54. {
  55. p2(n); //左右对称
  56. if(cpy(n))
  57. {
  58. f = true;
  59. fout << 4 << endl;
  60. }
  61. else for(int i = 1; i <= 3; i++) //对称后旋转
  62. {
  63. p1(n);
  64. if(cpy(n))
  65. {
  66. f = true;
  67. fout << 5 << endl;
  68. break;
  69. }
  70. }
  71. }
  72. if(!f && f1) fout << 6 << endl;
  73. if(!f && !f1) fout << 7 << endl;
  74. fout.close();
  75. }
  76. return 0;
  77. }


 
总结:代码能够逻辑清晰,但结构不够紧凑,函数写的太过于具体,如cpy, p1, p2都只能对函数中具体2中的矩阵操作,才不能对任意想进行操作的矩阵操作。因此后面的代码显得冗长 


                
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/277479
推荐阅读
相关标签
  

闽ICP备14008679号