Algorithm


A. Cheaterius's Problem
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Cheaterius is a famous in all the Berland astrologist, magician and wizard, and he also is a liar and a cheater. One of his latest inventions is Cheaterius' amulets! They bring luck and wealth, but are rather expensive. Cheaterius makes them himself. The technology of their making is kept secret. But we know that throughout long nights Cheaterius glues together domino pairs with super glue to get squares 2 × 2 which are the Cheaterius' magic amulets!

That's what one of Cheaterius's amulets looks like

After a hard night Cheaterius made n amulets. Everyone of them represents a square 2 × 2, every quarter contains 1 to 6 dots. Now he wants sort them into piles, every pile must contain similar amulets. Two amulets are called similar if they can be rotated by 90, 180 or 270 degrees so that the following condition is met: the numbers of dots in the corresponding quarters should be the same. It is forbidden to turn over the amulets.

Write a program that by the given amulets will find the number of piles on Cheaterius' desk.

Input

The first line contains an integer n (1 ≤ n ≤ 1000), where n is the number of amulets. Then the amulet's descriptions are contained. Every description occupies two lines and contains two numbers (from 1 to 6) in each line. Between every pair of amulets the line "**" is located.

Output

Print the required number of piles.

Examples
input
Copy
4
31
23
**
31
23
**
13
32
**
32
13
output
Copy
1
input
Copy
4
51
26
**
54
35
**
25
61
**
45
53
output
Copy
2

 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <iostream>
#include <set>

int main(){

    std::ios_base::sync_with_stdio(false);
    long n; std::cin >> n;

    std::set<long> pileset;
    for(long p = 0; p < n; p++){
        std::string s1, s2; std::cin >> s1 >> s2;
        long a(s1[0] - '0'), b(s1[1] - '0'), c(s2[1] - '0'), d(s2[0] - '0'); 
        long x = 1000 * a + 100 * b + 10 * c + d;
        long y = 1000 * b + 100 * c + 10 * d + a;
        long z = 1000 * c + 100 * d + 10 * a + b;
        long w = 1000 * d + 100 * a + 10 * b + c;
        if(!(pileset.count(x) || pileset.count(y) || pileset.count(z) || pileset.count(w))){pileset.insert(x);}
        if(p < n - 1){std::cin >> s1;}
    }

    std::cout << pileset.size() << std::endl;

    return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
4
31
23
**
31
23
**
13
32
**
32
13

Output

x
+
cmd
1
Advertisements

Demonstration


Codeforces Solution-A. Cheaterius's Problem-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+