POJ - 2159 - Ancient Cipher = 水题

Posted inko

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ - 2159 - Ancient Cipher = 水题相关的知识,希望对你有一定的参考价值。

http://poj.org/problem?id=2159

题意:给一种加密方式:先打乱,然后把字母换掉。求s串可不可以是t串的密文。

发现就是这种“可以”的情况就是字母的频率图排序后相同。

#include<algorithm>
#include<cmath>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<map>
#include<set>
#include<stack>
#include<string>
#include<queue>
#include<vector>
using namespace std;
typedef long long ll;

int cnts[26];
int cntt[26];

int main() {
#ifdef Yinku
    freopen("Yinku.in", "r", stdin);
#endif // Yinku
    string s, t;
    while(cin >> s >> t) {
        for(int i = 0; i < s.length(); ++i) {
            cnts[s[i] - 'A']++;
        }
        for(int i = 0; i < t.length(); ++i) {
            cntt[t[i] - 'A']++;
        }
        sort(cnts, cnts + 26);
        sort(cntt, cntt + 26);
        bool suc = 1;
        for(int i = 0; i < 26; ++i) {
            if(cnts[i] != cntt[i])
                suc = 0;
        }
        puts(suc ? "YES" : "NO");
    }
}

以上是关于POJ - 2159 - Ancient Cipher = 水题的主要内容,如果未能解决你的问题,请参考以下文章

POJ - 2159 - Ancient Cipher = 水题

背包系列练习( hdu 2844 Coins && hdu 2159 && poj 1170 Shopping Offers && hdu 3092

POJ题目分类

转 POJ分类

POJ 刷题指南

北大ACM - POJ试题分类