#D2662. Dice Puzzle
Dice Puzzle
Dice Puzzle
There is a dice with one letter of the alphabet (a ~ z, A ~ Z) drawn on each side.
Consider combining eight such dice to make a 2 x 2 x 2 cube.
There are conditions on how to combine the dice, and the facing faces of each dice must have the same alphabet, one in lowercase and the other in uppercase. For example, a surface marked a can be touched by a face marked A. However, the orientation of the characters when touching them does not matter.
According to this rule, input the information of 8 dice and create a program to judge whether or not you can make a cube. If you can make a cube, output YES (half-width uppercase letters), and if you cannot make it, output NO (half-width uppercase letters).
The letters on each side of the dice will be represented as c1 to c6 as shown in the following figure. Also, assume that the same letter is never drawn multiple times on a single dice (uppercase and lowercase letters of the same alphabet are not the case).
Input
A sequence of multiple datasets is given as input. The end of the input is indicated by a single line of zeros. Each dataset is given in the following format:
s1 s2 :: s8
The i-line gives the information si of the i-th dice. si is a string of length 6 and the jth character corresponds to each side cj of the dice.
The number of datasets does not exceed 50.
Output
The judgment result (half-width uppercase letters) is output to one line for each data set.
Example
Input
zabZNq BCxmAi ZcbBCj aizXCm QgmABC JHzMop ImoXGz MZTOhp zabZnQ BCxmAi ZcbBCj aizXCm QgmABC JHzMop ImoXGz MZTOhp abcdef ABDCFE FBDCAE abcdef BEACDF bfcaed fabcde DEABCF UnivOf AizuaH zTXZYW piglIt GRULNP higGtH uAzIXZ FizmKZ UnivOf AizuaH piglIt higGtH GRULNP uAzIXZ FizmKZ ZTXzYW 0
Output
YES NO YES YES NO
inputFormat
input the information of 8 dice and create a program to judge whether or not you can make a cube. If you can make a cube,
outputFormat
output YES (half-width uppercase letters), and if you cannot make it, output NO (half-width uppercase letters).
The letters on each side of the dice will be represented as c1 to c6 as shown in the following figure. Also, assume that the same letter is never drawn multiple times on a single dice (uppercase and lowercase letters of the same alphabet are not the case).
Input
A sequence of multiple datasets is given as input. The end of the input is indicated by a single line of zeros. Each dataset is given in the following format:
s1 s2 :: s8
The i-line gives the information si of the i-th dice. si is a string of length 6 and the jth character corresponds to each side cj of the dice.
The number of datasets does not exceed 50.
Output
The judgment result (half-width uppercase letters) is output to one line for each data set.
Example
Input
zabZNq BCxmAi ZcbBCj aizXCm QgmABC JHzMop ImoXGz MZTOhp zabZnQ BCxmAi ZcbBCj aizXCm QgmABC JHzMop ImoXGz MZTOhp abcdef ABDCFE FBDCAE abcdef BEACDF bfcaed fabcde DEABCF UnivOf AizuaH zTXZYW piglIt GRULNP higGtH uAzIXZ FizmKZ UnivOf AizuaH piglIt higGtH GRULNP uAzIXZ FizmKZ ZTXzYW 0
Output
YES NO YES YES NO
样例
zabZNq
BCxmAi
ZcbBCj
aizXCm
QgmABC
JHzMop
ImoXGz
MZTOhp
zabZnQ
BCxmAi
ZcbBCj
aizXCm
QgmABC
JHzMop
ImoXGz
MZTOhp
abcdef
ABDCFE
FBDCAE
abcdef
BEACDF
bfcaed
fabcde
DEABCF
UnivOf
AizuaH
zTXZYW
piglIt
GRULNP
higGtH
uAzIXZ
FizmKZ
UnivOf
AizuaH
piglIt
higGtH
GRULNP
uAzIXZ
FizmKZ
ZTXzYW
0
YES
NO
YES
YES
NO
</p>