Educational Codeforces Round 64 (Rated for Div. 2) B Ugly Pairs

You are given a string, consisting of lowercase Latin letters.

A pair of neighbouring letters in a string is considered ugly if these letters are also neighbouring in a alphabet. For example, string "abaca" contains ugly pairs at positions (1,2)

— "ab" and (2,3)

— "ba". Letters 'a' and 'z' aren't considered neighbouring in a alphabet.

Can you rearrange the letters of a given string so that there are no ugly pairs? You can choose any order of the letters of the given string but you can't add any new letters or remove the existing ones. You can also leave the order the same.

If there are multiple answers, print any of them.

You also have to answer T

separate queries.

Input

The first line contains a single integer T

(1≤T≤100

) — the number of queries.

Each of the next T

lines contains string s (1≤|s|≤100)

— the string for the next query. It is guaranteed that it contains only lowercase Latin letters.

Note that in hacks you have to set T=1

.

Output

Print T

lines. The i-th line should contain the answer to the i

-th query.

If the answer for the i

-th query exists, then print such a rearrangment of letters of the given string that it contains no ugly pairs. You can choose any order of the letters of the given string but you can't add any new letters or remove the existing ones. You can also leave the order the same.

If there are multiple answers, print any of them.

Otherwise print "No answer" for that query.

Example

Input

Copy

4
abcd
gg
codeforces
abaca

Output

Copy

cadb
gg
codfoerces
No answer

Note

In the first example answer "bdac" is also correct.

The second example showcases the fact that only neighbouring in alphabet letters are not allowed. The same letter is ok.

There are lots of valid answers for the third example.

思路:把a,c,e...和b,d,f...分开放,最后再验证一下是不是有相邻的字母就好了

#include<cstring>
#include<cstdio>
#include<algorithm>
#include<math.h>
#include<iostream>
using namespace std;
#define ll long long
#include<queue>
#include<string>
int main()
{
    int n;
    while(scanf("%d",&n)!=EOF)
    {
        string a="",b="",c="";char p[200]={'\0'};int len,t[200]={0};
        scanf("%s",p);
        len=strlen(p);
        for(int i=0;p[i]!='\0';i++)
        {
            t[p[i]-'a']++;
        }
        int m=0;
        for(int i=0;i<26;i+=2)
        {
            while(t[i])
            {
                b+='a'+i;
                t[i]--;
                m++;
            }
        }
        for(int i=1;i<26;i+=2)
        {
            while(t[i])
            {
                c+='a'+i;
                t[i]--;
            }
        }
        if(b[m-1]-c[0]!=1&&b[m-1]-c[0]!=-1)
        {
            a=b+c;
        }
        else a=c+b;
        int flag=0;
        for(int i=1;i<len;i++)
        {
            if(abs(a[i]-a[i-1])==1)
            {
                flag=1;
                break;
            }
        }
        if(flag) printf("No answer\n");
        else cout<<a<<endl;
    }
}

 

全部评论

相关推荐

小浪_Coding:1. 个人技能排版太乱, 写的技术栈太浅了, 跟测试,自动化相关的太少; 2. 项目开发类的太简单没有亮点, 算法类的项目建议只放一个,最好有自动化,CI/CD, pipline的项目, 需要更换; 3.整体排版需要优化, SOOB打招呼都需要注意等.
我的简历长这样
点赞 评论 收藏
分享
02-11 14:29
已编辑
字节跳动_QA
Edgestr:这种的写代码最狠了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务