2014牡丹江网络预选赛B题(找规律)zoj3810

来源:互联网 发布:公司c#都转java了 编辑:程序博客网 时间:2024/04/19 11:33
A Volcanic Island

Time Limit: 2 Seconds      Memory Limit: 65536 KB      Special Judge

An underwater volcano has erupted massively in somewhere of the deep Atlantis Ocean. This large eruption led to the birth of a new volcanic island, which had a shape of square. Near the island, there are N countries. All of them have claimed the sovereignty over the island.

After a lot of multilateral negotiation and occasional armed conflicts, the N countries decided to divide the square volcanic island equally. They partitioned the island into N x N small equal-sized square chunks. Each country could get a connected region consists of exact N chunks.

Two chunks A and B are called "connected" if they share an edge, or there exists another chunk C connected with both A and B. A group of chunks are called "connected region" if any two of these chunks are connected.

Every country want a unique region. It means the N regions should be different with each other. Two regions are considered as the same if and only if one can transform into the other by an isometry (a combination of rigid motions, including translation, rotation and reflection).

In a nutshell, your task is to divide a square island with N x N chunks into N connected regions with different shape. You also need to draw a map to color the regions of the map so that no two edge-adjacent regions have the same color. Most of the people in these countries believed that four different colors are enough. So you can mark these regions with at most four colors, red, green, blue and yellow.

Input

There are multiple test cases. The first line of input contains an integer T indicating the number of test cases. For each test case:

There is only an integer N (1 <= N <= 100).

Output

For each test case, output a valid map described above. If there is no solution, output "No solution!" instead. Please note that only four colors ('R', 'G', 'B' and 'Y') can be used to drawing the map.

Sample Input

225

Sample Output

No solution!YYYGRYGGGRYGYYRBYYYRBBBBR

题意:在n*n的地图上用四种颜色划分出n个不同形状的连通块,如果可行输出任意可行的方案

思路 :           如图所示,不同颜色表示不同的块,8*8为例
                  
              n=1,直接输出任意颜色

              1<n<=4,无解

              n=6,特殊判断

              n等于其它,规律如上8*8的地图

1 0
原创粉丝点击