10008 - What's Cryptanalysis?
Time limit: 3.000 seconds
Cryptanalysis is the process of breaking someone else's cryptographic writing. This sometimes involves some kind of statistical analysis of a passage of (encrypted) text. Your task is to write a program which performs a simple analysis of a given text.
Input
The first line of input contains a single positive decimal integer n . This is the number of lines which follow in the input. The next n lines will contain zero or more characters (possibly including whitespace). This is the text which must be analyzed.Output
Each line of output contains a single uppercase letter, followed by a single space, then followed by a positive decimal integer. The integer indicates how many times the corresponding letter appears in the input text. Upper and lower case letters in the input are to be considered the same. No other characters must be counted. The output must be sorted in descending count order; that is, the most frequent letter is on the first output line, and the last line of output indicates the least frequent letter. If two letters have the same frequency, then the letter which comes first in the alphabet must appear first in the output. If a letter does not appear in the text, then that letter must not appear in the output.Sample Input
3 This is a test. Count me 1 2 3 4 5. Wow!!!! Is this question easy?
Sample Output
S 7 T 6 I 5 E 4 O 3 A 2 H 2 N 2 U 2 W 2 C 1 M 1 Q 1 Y 1
完整代码:
/*0.016s*/
#include<cstdio>
#include<algorithm>
using namespace std;
struct letter
{
char ch;
int num;
bool operator < (const letter a)const
{
return num != a.num ? num > a.num : ch < a.ch;
}
} HashTable[27];
char str[100];
int main(void)
{
int n;
scanf("%d\n", &n);///读掉换行~
for (int i = 0; i < 26; i++)
HashTable[i + 1].ch = 'A' + i;
for (int i = 0; i < n; i++)
{
gets(str);
for (int j = 0; str[j]; j++)
if (str[j] >= 'A' && str[j] <= 'Z' || str[j] >= 'a' && str[j] <= 'z')
HashTable[str[j] & 31].num++;
}
sort(HashTable + 1, HashTable + 27);
for (int i = 1; i <= 26; i++)
if (HashTable[i].num)
printf("%c %d\n", HashTable[i].ch, HashTable[i].num);
return 0;
}

本文介绍了一道关于密码分析的编程竞赛题目,该题目要求参赛者编写程序对给定的加密文本进行简单的统计分析,找出出现频率最高的字母,并按频率从高到低排序输出。
1312

被折叠的 条评论
为什么被折叠?



