303328: CF645A. Amity Assessment

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Amity Assessment

题意翻译

#### 题目大意 输入两个个2\*2的方格,问方格一能否通过将方块滑动至空格的操作变成方格二(用X代表空格,且空格只有一个)。

题目描述

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: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF645A/dea7f0e6f6bd920a326a8e3da7a33cbf3667be5d.png)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 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 "YES"(without quotes) if the puzzles can reach the same configuration (and Bessie and Elsie are truly BFFLs). Otherwise, print "NO" (without quotes).

输入输出样例

输入样例 #1

AB
XC
XB
AC

输出样例 #1

YES

输入样例 #2

AB
XC
AC
BX

输出样例 #2

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...

Input

题意翻译

#### 题目大意 输入两个个2\*2的方格,问方格一能否通过将方块滑动至空格的操作变成方格二(用X代表空格,且空格只有一个)。

加入题单

算法标签: