Educational Codeforces Round 82 C.Perfect Keyboard

Educational Codeforces Round 82 C.Perfect Keyboard

Polycarp wants to assemble his own keyboard. Layouts with multiple rows are too complicated for him — his keyboard will consist of only one row, where all 26 lowercase Latin letters will be arranged in some order.

Polycarp uses the same password s on all websites where he is registered (it is bad, but he doesn’t care). He wants to assemble a keyboard that will allow to type this password very easily. He doesn’t like to move his fingers while typing the password, so, for each pair of adjacent characters in s, they should be adjacent on the keyboard. For example, if the password is abacaba, then the layout cabdefghi… is perfect, since characters a and c are adjacent on the keyboard, and a and b are adjacent on the keyboard. It is guaranteed that there are no two adjacent equal characters in s, so, for example, the password cannot be password (two characters s are adjacent).

Can you help Polycarp with choosing the perfect layout of the keyboard, if it is possible?

Input

The first line contains one integer T (1≤T≤1000) — the number of test cases.

Then T lines follow, each containing one string s (1≤|s|≤200) representing the test case. s consists of lowercase Latin letters only. There are no two adjacent equal characters in s.

Output

For each test case, do the following:

if it is impossible to assemble a perfect keyboard, print NO (in upper case, it matters in this problem);
otherwise, print YES (in upper case), and then a string consisting of 26 lowercase Latin letters — the perfect layout. Each Latin letter should appear in this string exactly once. If there are multiple answers, print any of them.

Example

input

5
ababa
codedoca
abcda
zxzytyz
abcdefghijklmnopqrstuvwxyza

output

YES
bacdefghijklmnopqrstuvwxyz
YES
edocabfghijklmnpqrstuvwxyz
NO
YES
xzytabcdefghijklmnopqrsuvw
NO

这道题不难,我用 c n t [ i ] cnt[i] 记录与 s [ i ] a s[i]-'a' 相邻的字符的个数,有几个小细节需要考虑:
1.字符串长度为1时,输出为YES
2.NO其实很好判断,满足 c n t [ i ] = 1 cnt[i]=1 的字符有且只有两个,且其余字符的 c n t [ i ] cnt[i] 只能等于2

我是用数组记录+DFS求解的,具体注释见代码:

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;

int a[30][30],cnt[30],vis[30],m[30][30],p[30];//a记录与字符s[i]相邻的字符,cnt[i]记录与s[i]相邻的字符个数,vis[i]用于DFS去重标记,m用于记录时的去重标记,p用于输出时的去重标记
string ans="";
void dfs(int n){//dfs得到答案
    vis[n]=1;
    ans+=char('a'+n);
    for(int i=0;i<cnt[n];i++){
        if(vis[a[n][i]]==0) dfs(a[n][i]);
    }
}

int main()
{
    int t;
    cin>>t;
    string s;
    while(t--){
        memset(a,0,sizeof(a));
        memset(cnt,0,sizeof(cnt));
        memset(vis,0,sizeof(vis));
        memset(m,0,sizeof(m));
        memset(p,0,sizeof(p));
        cin>>s;
        int flag=1;
        ans="";
        for(int i=0;i<s.length();i++){//数组记录
           if(i==0) {if(!m[s[i]-'a'][s[i+1]-'a']){a[s[i]-'a'][cnt[s[i]-'a']++]=s[i+1]-'a';m[s[i]-'a'][s[i+1]-'a']=1;}}
           else if(i==s.length()-1) {if(!m[s[i]-'a'][s[i-1]-'a']) {a[s[i]-'a'][cnt[s[i]-'a']++]=s[i-1]-'a';m[s[i]-'a'][s[i-1]-'a']=1;}}
           else {
                if(!m[s[i]-'a'][s[i-1]-'a']) {a[s[i]-'a'][cnt[s[i]-'a']++]=s[i-1]-'a';m[s[i]-'a'][s[i-1]-'a']=1;}
                if(!m[s[i]-'a'][s[i+1]-'a']) {a[s[i]-'a'][cnt[s[i]-'a']++]=s[i+1]-'a';m[s[i]-'a'][s[i+1]-'a']=1;}
           }
           if(cnt[s[i]-'a']>2) {flag=0;break;}
           p[s[i]-'a']=1;
        }
        int num=0,u;
        for(int i=0;i<26;i++)
            if(cnt[i]==1) {num++;u=i;}
        if(num!=2) flag=0;
        if(s.size()==1) {//特判
                 puts("YES");
                  puts("abcdefghijklmnopqrstuvwxyz");
                  continue;
            }
        if(!flag) puts("NO");//特判
        else{
            puts("YES");
            dfs(u);
            for(int i=0;i<26;i++){
                if(!p[i]) ans+=char('a'+i);
            }
            cout<<ans<<endl;
        }
    }
   return 0;
}
发布了288 篇原创文章 · 获赞 14 · 访问量 2万+

猜你喜欢

转载自blog.csdn.net/qq_43765333/article/details/104292180