码迷,mamicode.com
首页 > 其他好文 > 详细

CodeForces 404A 手速题

时间:2015-02-25 00:45:17      阅读:338      评论:0      收藏:0      [点我收藏+]

标签:

//CodeForces 404A

 1 #include "iostream"
 2 #include "cstdio"
 3 #include "cstring"
 4 #include "algorithm"
 5 using namespace std;
 6 char mat[310][310];
 7 int n;
 8 bool check_1()
 9 {
10     int i;
11     char c = mat[1][1];
12     for(i = 1; i <= n; ++i) {
13         if(c != mat[i][i] || c != mat[i][n + 1 - i])
14             return 0;
15     }
16     return 1;
17 }
18 
19 bool check_2()
20 {
21     int i, j;
22     char c = mat[1][2];
23     for(i = 1; i <= n; ++i) {
24         for(j = 1; j <= n; ++j) {
25             if(i == j || n + 1 - i == j)
26                 continue;
27             if(c != mat[i][j])
28                 return 0;
29         }
30     }
31     return 1;
32 }
33 
34 int main()
35 {
36     int i, j;
37     scanf("%d", &n);
38     for(i = 1; i <= n; ++i)
39         scanf("%s", mat[i] + 1);
40     if(mat[1][1] != mat[1][2] && check_1() && check_2())
41         printf("YES\n");
42     else
43         printf("NO\n");
44 }

 

CodeForces 404A 手速题

标签:

原文地址:http://www.cnblogs.com/AC-Phoenix/p/4299069.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!