You have a board made of tiles that are black on one side and light grey on the other, but right now they're all showing their grey side. Imagine the patterns you could make! For example, suppose you imposed a grid over the tiles to divide them into squares of the same size with no tiles left over. There are four grid sizes that would work: , , and , as shown below (the tiles are in grey, the grids are shown with black lines).
Now imagine that each grid is a checkerboard where the top left square is a black square, like this:
Now imagine flipping over all the tiles that are underneath black grid squares. Do the grid first, then , then , then . You're going to get some cool patterns. The pictures below show the results.
The input will contain test cases. Each test case consists of six lines. The first line contains a single integer representing the size of the board. The next lines each contain two integers and , separated by a space. and represent the row and column of a tile on the board . Rows are numbered top down starting at and columns are numbered left to right starting at .
Your job is to simulate the pattern-making process described above for an board, and then output a single line of characters representing the five tiles in the locations given in the test case, in the order they originally appeared in the file. Each tile should be represented by an uppercase B
or G
depending on whether it is showing its black or grey side in the final pattern.
Note that there are test cases in the sample data below, but the real data files will contain test cases.
Sample Input
10
5 1
5 2
5 3
5 4
5 5
12
6 6
7 7
8 8
9 9
10 10
Sample Output
GBBGG
GGGGG
Educational Computing Organization of Ontario - statements, test data and other materials can be found at ecoocs.org
Comments