QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#800683 | #8829. Aibohphobia | diandian2020# | WA | 0ms | 3908kb | C++14 | 1.1kb | 2024-12-06 14:31:18 | 2024-12-06 14:31:19 |
Judging History
answer
#include<cstdio>
#include<vector>
#include<cstring>
#include<iostream>
#include<algorithm>
#define fi first
#define se second
using namespace std;
typedef long long LL;
typedef pair<int,int> PII;
const int N=1e6+9;
int n; char s[N];
int c[26];
void solve(){
scanf("%s",s+1); n=strlen(s+1);
if(n==1){
printf("YES\n%s\n",s+1);
return;
}
for(int i=0;i<26;i++) c[i]=0;
for(int i=1;i<=n;i++) c[s[i]-'a']++;
int C=0;
for(int i=0;i<26;i++) C+=!!c[i];
if(C==1) return puts("NO"),void();
if(C==2){
int f=0;
for(int i=0;i<26;i++) f|=c[i]==1;
if(!f) puts("NO");
else{
puts("YES");
for(int i=0;i<26;i++) if(c[i]==1) putchar(i+'a');
for(int i=0;i<26;i++) if(c[i]>1) for(int j=1;j<=c[i];j++) putchar(i+'a');
}
return;
}
puts("YES");
for(int i=0;i<26;i++) if(c[i]) putchar(i+'a');
for(int i=0;i<26;i++) if(c[i]) for(int j=1;j<c[i];j++) putchar(i+'a');
}
int main(){
int T=1;
scanf("%d",&T);
while(T--) solve();
return 0;
}
详细
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3908kb
input:
5 a sos abba icpc tenet
output:
YES a YES ossNO YES cipcYES entet
result:
wrong answer Not a permutation (test case 2)