uva 253 Cube painting

Cube painting 

We have a machine for painting cubes. It is supplied with three different colors: blue, red and green. Each face of the cube gets one of these colors. The cube's faces are numbered as in Figure 1.

picture21

Figure 1.

Since a cube has 6 faces, our machine can paint a face-numbered cube in tex2html_wrap_inline126 different ways. When ignoring the face-numbers, the number of different paintings is much less, because a cube can be rotated. See example below. We denote a painted cube by a string of 6 characters, where each character is a br, or g. The tex2html_wrap_inline128 character ( tex2html_wrap_inline130 ) from the left gives the color of face i. For example, Figure 2 is a picture of rbgggr and Figure 3 corresponds to rggbgr. Notice that both cubes are painted in the same way: by rotating it around the vertical axis by 90 tex2html_wrap_inline134 , the one changes into the other.

tex2html_wrap138 tex2html_wrap140

Input

The input of your program is a textfile that ends with the standard end-of-file marker. Each line is a string of 12 characters. The first 6 characters of this string are the representation of a painted cube, the remaining 6 characters give you the representation of another cube. Your program determines whether these two cubes are painted in the same way, that is, whether by any combination of rotations one can be turned into the other. (Reflections are not allowed.)

Output

The output is a file of boolean. For each line of input, output contains TRUE if the second half can be obtained from the first half by rotation as describes above, FALSE otherwise.

Sample Input

rbgggrrggbgr
rrrbbbrrbbbr
rbgrbgrrrrrg

Sample Output

TRUE

FALSE

FALSE

这道题目开始没想通,去看别人的代码,网上有很多人用的暴力,只看到一个很犀利的想法,如下:

设两个正方体是 c1, c2, 保持 c1 不变,枚举 c1 的相邻的三个面,和 c2 的6个面依次对比,如果这个面和其中一个面相同,并且这两个面的对面也对应相同,那么就把 c2 的这两个面标记为字符 ‘0’ ,防止以后再次用到这两个面。如果对于 c1 的这三个面的其中一个面,在 c2 中找不到符合条件(即两个面相同并且对面也相同)的,就退出循环,说明这两个正方体不相同,否则,这两个正方体相同。

唉,不愧是大牛的想法,ORZ…………

 1 #include <iostream>
 2 #include <cstdlib>
 3 #include <cstdio>
 4 #include <cstring>
 5 
 6 using namespace std;
 7 
 8 int main(void)
 9 {
10     char a[13], c1[6], c2[6]; 
11 #ifndef ONLINE_JUDGE
12     freopen("in", "r", stdin);
13 #endif
14     while (cin>>a)
15     {
16         int i, j = 0;
17         for (i = 0; i < 6; i++)    { c1[i] = a[i]; c2[i] = a[i+6]; }
18         int mrk;
19         for (i = 0; i < 3; i++)
20         { 
21             mrk = 0;
22             for (j = 0; j < 6; j++)
23             {
24                 if (c1[i]==c2[j] && c1[5-i]==c2[5-j])
25                 {
26                     mrk = 1; c2[j] = '0'; c2[5-j] = '0'; break;    
27                 }
28             }
29             if (!mrk)    break;
30         }
31         if (!mrk)    cout << "FALSE" << endl;
32         else    cout << "TRUE" << endl;
33     }
34 
35     return 0;
36 }
原文地址:https://www.cnblogs.com/liuxueyang/p/2761194.html