n个字符串,编号为1,2,3...n
我们只需要找 i n-i+1 这2个字符串有无相同的字符即可

参考代码

#include<bits/stdc++.h>
using namespace std;
int n;
string a[1005];
bool m[300];
int cmp(int x,int y)
{
    memset(m,0,sizeof(m));
    for(int i=0;i<a[x].length();i++)
        m[a[x][i]]=1;
    for(int i=0;i<a[y].length();i++)
        if(m[a[y][i]])
            return 0;
    return 1;
}
void work()
{
    cin>>n;
    for(int i=1;i<=n;i++)
        cin>>a[i];
    for(int i=1;i<=n/2;i++)
        if(cmp(i,n-i+1)){
            cout<<"No\n";
            return;
        }
    cout<<"Yes\n";
}
int T;
int main()
{
    cin>>T;
    while(T--)
        work();
    return 0;
}