uva 11520

http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2515

11520 - Fill the Square

Time limit: 1.000 seconds

 

In this problem, you have to draw a square using uppercase English Alphabets. To be more precise, you will be given a square grid with some empty blocks and others already filled for you with some letters to make your task easier. You have to insert characters in every empty cell so that the whole grid is filled with alphabets. In doing so you have to meet the following rules: 

  1. Make sure no adjacent cells contain the same letter; two cells are adjacent if they share a common edge.
  2. There could be many ways to fill the grid. You have to ensure you make the lexicographically smallest one. Here, two grids are checked in row major order when comparing lexicographically. 

Input 

The first line of input will contain an integer that will determine the number of test cases. Each case starts with an integer n (n ≤ 10), that represents the dimension of the grid. The next n lines will contain n characters each. Every cell of the grid is either a ‘.’ or a letter from [A, Z]. Here a ‘.’ represents an empty cell. 

Output 

For each case, first output ‘Case #:’ (# replaced by case number) and in the next n lines output the input matrix with the empty cells filled heeding the rules above. 

Sample Input

... 

... 

... 

... 

A.. 

... 

Sample Output

 Case 1: 

ABA 

BAB 

ABA 

Case 2: 

BAB 

ABA 

BAB

AC代码:

 1 // UVa11520 Fill the Square
 2 
 3 #include<cstdio>
 4 
 5 #include<cstring>
 6 
 7 const int maxn = 10 + 5;
 8 
 9 char grid[maxn][maxn];
10 
11 int n;
12 
13 int main() {
14 
15   int T;
16 
17   scanf("%d", &T);
18 
19   for(int kase = 1; kase <= T; kase++) {
20 
21     scanf("%d", &n);
22 
23     for(int i = 0; i < n; i++) scanf("%s", grid[i]);
24 
25     for(int i = 0; i < n; i++)
26 
27       for(int j = 0; j < n; j++) if(grid[i][j] == '.') {//没填过的字母才需要填
28 
29         for(char ch = 'A'; ch <= 'Z'; ch++) {  //按照字典序依次尝试
30 
31           bool ok = true;
32 
33           if(i>0 && grid[i-1][j] == ch) ok = false;  //和上面的字母冲突
34 
35           if(i<n-1 && grid[i+1][j] == ch) ok = false;
36 
37           if(j>0 && grid[i][j-1] == ch) ok = false;
38 
39           if(j<n-1 && grid[i][j+1] == ch) ok = false;
40 
41           if(ok) { grid[i][j] = ch; break; } //没有冲突,填进网格,停止继续尝试
42 
43         }
44 
45       }
46 
47     printf("Case %d:
", kase);
48 
49     for(int i = 0; i < n; i++) printf("%s
", grid[i]);
50 
51   }
52 
53   return 0;
54 
55 }
56 
57  
原文地址:https://www.cnblogs.com/jeff-wgc/p/4479234.html