ACM Secrete Master Plan
Posted 如有一味绝境,非历十方生死
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ACM Secrete Master Plan相关的知识,希望对你有一定的参考价值。
Problem Description
Master Mind KongMing gave Fei Zhang a secrete master plan stashed in a pocket. The plan instructs how to deploy soldiers on the four corners of the city wall. Unfortunately, when Fei opened the pocket he found there are only four numbers written in dots on a piece of sheet. The numbers form 2×2
Input
The first line of the input gives the number of test cases, T(1≤T≤104)Tai0ai11≤ai0,ai1≤1003rd4th
Output
For each test case, output one line containing "Case #x: y", where x is the test case number
(starting from 1) and y
(starting from 1) and y
Sample Input
4
1 2
3 4
1 2
3 4
1 2
3 4
3 1
4 2
1 2
3 4
3 2
4 1
1 2
3 4
4 3
2 1
Sample Output
Case #1: POSSIBLE
Case #2: POSSIBLE
Case #3: IMPOSSIBLE
Case #4: POSSIBLE
1 #include<bits/stdc++.h> 2 using namespace std; 3 /* 4 方块旋转,两个矩形,如果能够通过旋转使两个一样则输出 possible 5 否则则输出impossible 6 */ 7 int A[5][5],B[5][5]; //矩阵A,矩阵B 8 //判断现两个矩形是否一样 9 bool Judge() 10 { 11 for(int i = 0; i < 2; i++) 12 for(int j = 0; j < 2; j++) 13 if(A[i][j] != B[i][j]) 14 return false; 15 return true; 16 } 17 //将一个矩形进行旋转,顺时针旋转, 18 //破点:将[0][0]先后进行向左、斜方向、向下交换 19 void Swap() 20 { 21 swap(A[0][0],A[0][1]); 22 swap(A[0][0],A[1][1]); 23 swap(A[0][0],A[1][0]); 24 } 25 //通过旋转四次进行判定是否满足题意 26 bool Solve() 27 { 28 for(int i = 0; i < 4; i++) 29 { 30 if(Judge()) 31 return true; 32 else 33 Swap(); 34 } 35 return false; 36 } 37 38 int main() 39 { 40 int T,n; 41 while(~scanf("%d",&T)) 42 { 43 for(int p= 1; p <= T; p++) 44 { 45 46 scanf("%d %d %d %d",&A[0][0],&A[0][1],&A[1][0],&A[1][1]); 47 scanf("%d %d %d %d",&B[0][0],&B[0][1],&B[1][0],&B[1][1]); 48 printf("Case #%d: ",p); 49 if(Solve()) 50 { 51 printf("POSSIBLE\n"); 52 } 53 else 54 { 55 printf("IMPOSSIBLE\n"); 56 } 57 58 59 } 60 } 61 return 0; 62 }
以上是关于ACM Secrete Master Plan的主要内容,如果未能解决你的问题,请参考以下文章
软件架构师成长之路: Master Plan for becoming a Software Architect
Master Plan for becoming a Software Architect : Roadmap of a Software Architect