CodeFoeces-404A

题目

原题链接:A. Valera and X

题意

给出一个n*n的字符矩阵,问他是否能形成一个X,其他地方的字母也必须相同,且一共有两种字母。

代码

#include
using namespace std;
int main() {
    int n,flag=1;
    set t;
    char s[300][300],tmp,tmp1;
    scanf("%d\n",&n);
    for(int i=0; i

你可能感兴趣的:(CodeFoeces-404A)