zoukankan      html  css  js  c++  java
  • 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  
  • 相关阅读:
    ORACLE数据库——触发器的创建和使用
    Oracle——游标的创建和使用
    Oracle数据库和表的操作
    JavaScript中的this,call,apply使用及区别详解
    jQuery插件开发的五种形态小结
    前端图片上传预览
    location.pathname:返回URL的域名(域名IP)后的部分。
    使用Selectivizr让IE6~8支持CSS3
    respond.js有什么作用?
    截取url参数
  • 原文地址:https://www.cnblogs.com/jeff-wgc/p/4479234.html
Copyright © 2011-2022 走看看