A. Amity Assessment

time limit per test2 seconds

memory limit per test256 megabytes

inputstandard input

outputstandard output

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.

Input

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 a 2 × 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

Output “YES”(without quotes) if the puzzles can reach the same configuration (and Bessie and Elsie are truly BFFLs). Otherwise, print “NO” (without quotes).

Examples

input

AB

XC

XB

AC

output

YES

input

AB

XC

AC

BX

output

NO

我直接暴力来的

#include <iostream>
#include <string.h>
#include <stdlib.h>
#include <algorithm>
#include <math.h>
#include <stdio.h>
#include <queue>
#include <map> using namespace std;
int dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}};
int vis[5000];
struct Node
{
int a[2][2];
int s;
int posx;
int posy;
Node(){};
Node(int a[2][2],int s,int posx,int posy)
{
this->s=s;
this->posx=posx;
this->posy=posy;
memcpy(this->a,a,sizeof(this->a));
}
};
Node st,ed;
map<char,int>m; int kt(int a[2][2])
{
int num=0;
for(int i=0;i<2;i++)
for(int j=0;j<2;j++)
num=num*10+a[i][j];
return num;
}
int bfs(Node st)
{
queue<Node>q;
q.push(st);
while(!q.empty())
{
Node term=q.front();
q.pop();
if(term.s==ed.s)
{
return 1;
} for(int i=0;i<4;i++)
{
int xx=term.posx+dir[i][0];
int yy=term.posy+dir[i][1];
if(xx<0||xx>=2||yy<0||yy>=2)
continue;
swap(term.a[term.posx][term.posy],term.a[xx][yy]);
int state=kt(term.a);
if(vis[state])
{
swap(term.a[term.posx][term.posy],term.a[xx][yy]);
continue;
}
vis[state]=1;
q.push(Node(term.a,state,xx,yy));
swap(term.a[term.posx][term.posy],term.a[xx][yy]);
}
}
return 0;
}
int main()
{
m['A']=1;m['B']=2;m['C']=3;m['X']=0;
char b1[2][2];
memset(vis,0,sizeof(vis));
for(int i=0;i<=1;i++)
scanf("%s",b1[i]);
for(int i=0;i<=1;i++)
for(int j=0;j<=1;j++)
{
st.a[i][j]=m[b1[i][j]];
if(b1[i][j]=='X')
st.posx=i,st.posy=j;
}
st.s=kt(st.a);
for(int i=0;i<=1;i++)
scanf("%s",b1[i]);
for(int i=0;i<=1;i++)
for(int j=0;j<=1;j++)
{
ed.a[i][j]=m[b1[i][j]];
if(b1[i][j]=='X')
ed.posx=i,ed.posy=j;
}
ed.s=kt(ed.a);
if(bfs(st))
printf("YES\n");
else
printf("NO\n");
return 0; }

最新文章

  1. IIS7.0部署MVC/WebApi项目,报404.4错误
  2. CSS3 Animation 帧动画 steps()
  3. JQ图片轮播
  4. openjudge 螺旋加密
  5. 【T-SQL基础】01.单表查询-几道sql查询题
  6. ACM Color the fence
  7. maven Ubuntu14.04 安装
  8. 2016 Al-Baath University Training Camp Contest-1 C
  9. bzoj3529(莫比乌斯反演+离线+树状数组)
  10. Right-BICEP 测试四则运算二程序
  11. [反汇编练习] 160个CrackMe之025
  12. android网络图片的下载
  13. angularJs项目实战!03:angularjs与其他类库的协作
  14. Ural 1450 求最长路 SPFA
  15. JavaScript设计模式_05_发布订阅模式
  16. Angular 非父子组件间的service数据通信
  17. 简述Java变量和强制转换类型
  18. Sublime Text3 里使用MarkDown如何预览
  19. 通过DMS连接RDS需要添加的DMS白名单地址
  20. ABC2

热门文章

  1. 简单实例,说明自动生成Makefile的详细过程
  2. print()函数的end 参数
  3. 【转】搞清楚LzoCodec和LzopCodec
  4. C语言 面试
  5. ubuntu下刷新dns
  6. Eclipse中安装JBoss Tools插件
  7. 5分钟用Spring4 搭建一个REST WebService(转)
  8. Android——Activity恢复用户用EditText输入的数据
  9. Hadoop环境搭载
  10. Android基础总结(七)BroadcastReceiver