Problem G
Settlers of Catan
The popular board game “Settlers of Catan” starts by creating a random board. This board consists of hexagonal resource tiles containing five different resources: clay, lumber, wool, grain, and ore. For simplicity, we will denote these by the numbers 1 to 5.
Random boards, however, often have multiple equal resource tiles next to each other. This annoys some players. Therefore, we have invented a new way of creating the playing board. Starting in the middle and spiraling outwards, each time we add a new tile to the board we choose the resource of the tile according to the following rules:
-
the new tile must be different from its neighboring tiles on the board so far;
-
in case multiple tiles are possible, we choose a resource that occurs the least number of times on the board so far;
-
in case multiple tiles are still possible, the new resource must have the lowest number possible.
The figure underneath shows how to spiral outwards and which
resource tiles are chosen first. We are curious what the number
of the resource is on the
![\includegraphics[width=0.5\textwidth ]{settlers}](/problems/settlers2/file/statement/en/img-0001.png)
Input
On the first line of the input there is one integer
Output
For each test case, print a single line with one integer,
specifying the resource of the
Sample Input 1 | Sample Output 1 |
---|---|
4 1 4 10 100 |
1 4 5 5 |