UVa1339 - Ancient Cipher
【摘要】
//UVa1339 - Ancient Cipher//已AC#include<stdio.h>#include<string.h>#include<stdlib.h>int cmp(const void *a, const void *b){ return *(int *)a - *(int ...
-
//UVa1339 - Ancient Cipher
-
//已AC
-
#include<stdio.h>
-
#include<string.h>
-
#include<stdlib.h>
-
int cmp(const void *a, const void *b){
-
return *(int *)a - *(int *)b;
-
}
-
int main(){
-
//freopen("date4.in","r",stdin);
-
char a[200], b[200];
-
while(scanf("%s%s", a,b) != EOF){
-
int len = strlen(a);
-
int cnt1[26] = {0}, cnt2[26] = {0};
-
//统计
-
for(int i=0; i < len; i++){
-
cnt1[a[i] - 'A']++;
-
cnt2[b[i] - 'A']++;
-
}
-
//排序
-
qsort(cnt1,26,sizeof(int),cmp);
-
qsort(cnt2,26,sizeof(int),cmp);
-
//输出
-
int ok = 1;
-
for(int i = 0; i < 26; i++)
-
if(cnt1[i] != cnt2[i]) ok = 0;
-
if(ok) printf("YES\n"); else printf("NO\n");
-
}
-
return 0;
-
}
文章来源: gwj1314.blog.csdn.net,作者:小哈里,版权归原作者所有,如需转载,请联系作者。
原文链接:gwj1314.blog.csdn.net/article/details/68957237
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)