codeforces 655A A. Amity Assessment(水题)
Posted LittlePointer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces 655A A. Amity Assessment(水题)相关的知识,希望对你有一定的参考价值。
题目链接:
Bessie the cow and her best friend Elsie each received a sliding puzzle on Pi Day. Their puzzles consist of a 2 × 2 grid and three tiles labeled ‘A‘, ‘B‘, and ‘C‘. The three tiles sit on top of the grid, leaving one grid cell empty. To make a move, Bessie or Elsie can slide a tile adjacent to the empty cell into the empty cell as shown below:
In order to determine if they are truly Best Friends For Life (BFFLs), Bessie and Elsie would like to know if there exists a sequence of moves that takes their puzzles to the same configuration (moves can be performed in both puzzles). Two puzzles are considered to be in the same configuration if each tile is on top of the same grid cell in both puzzles. Since the tiles are labeled with letters, rotations and reflections are not allowed.
The first two lines of the input consist of a 2 × 2 grid describing the initial configuration of Bessie‘s puzzle. The next two lines contain a2 × 2 grid describing the initial configuration of Elsie‘s puzzle. The positions of the tiles are labeled ‘A‘, ‘B‘, and ‘C‘, while the empty cell is labeled ‘X‘. It‘s guaranteed that both puzzles contain exactly one tile with each letter and exactly one empty position.
Output "YES"(without quotes) if the puzzles can reach the same configuration (and Bessie and Elsie are truly BFFLs). Otherwise, print "NO" (without quotes).
AB
XC
XB
AC
YES
AB
XC
AC
BX
NO
The solution to the first sample is described by the image. All Bessie needs to do is slide her ‘A‘ tile down.
In the second sample, the two puzzles can never be in the same configuration. Perhaps Bessie and Elsie are not meant to be friends after all...
题意:问给你两种状态问是否能由第一种状态转化成第二种;
思路:顺时针方向的顺序看是否符合;
AC代码:
#include <bits/stdc++.h> using namespace std; int main() { char a[5][3],b[3][3],ans1[5],ans2[5]; scanf("%s",a[0]); scanf("%s",a[1]); scanf("%s",b[0]); scanf("%s",b[1]); int cnt=0,num=0; if(a[0][0]!=‘X‘)ans1[cnt++]=a[0][0]; if(a[0][1]!=‘X‘)ans1[cnt++]=a[0][1]; if(a[1][1]!=‘X‘)ans1[cnt++]=a[1][1]; if(a[1][0]!=‘X‘)ans1[cnt++]=a[1][0]; if(b[0][0]!=‘X‘)ans2[num++]=b[0][0]; if(b[0][1]!=‘X‘)ans2[num++]=b[0][1]; if(b[1][1]!=‘X‘)ans2[num++]=b[1][1]; if(b[1][0]!=‘X‘)ans2[num++]=b[1][0]; int n=10; while(n--){ if(ans1[0]==ans2[0]&&ans1[1]==ans2[1]&&ans1[2]==ans2[2]) { cout<<"YES"<<"\n"; return 0; } else { char m=ans2[0]; for(int i=0;i<3;i++) { ans2[i]=ans2[i+1]; } ans2[2]=m; } } cout<<"NO"<<endl; return 0; }
以上是关于codeforces 655A A. Amity Assessment(水题)的主要内容,如果未能解决你的问题,请参考以下文章
第六周周赛——AK机会不易得,好好把握题解(出自HDU5650,codeforces 616A,624A,659A,655A,658A)
第六周周赛——AK机会不易得,好好把握题解(出自HDU5650,codeforces 616A,624A,659A,655A,658A)
codeforces 632A A. Grandma Laura and Apples