欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

1339 - Ancient Cipher 算法竞赛第四章

程序员文章站 2022-04-02 21:29:51
...

Time limit: 3.000 seconds

Problem Description

Ancient Roman empire had a strong government system with various departments, including a secretservice department. Important documents were sent between provinces and the capital in encryptedform to prevent eavesdropping. The most popular ciphers in those times were so called substitution cipher and permutation cipher.

Substitution cipher changes all occurrences of each letter to some other letter. Substitutes for all letters must be different. For some letters substitute letter may coincide with the original letter. For example, applying substitution cipher that changes all letters from ‘A’ to ‘Y’ to the next ones in the alphabet, and changes ‘Z’ to ‘A’, to the message “VICTORIOUS” one gets the message “WJDUPSJPVT”. Permutation cipher applies some permutation to the letters of the message. For example, applying the permutation ⟨2, 1, 5, 4, 3, 7, 6, 10, 9, 8⟩ to the message “VICTORIOUS” one gets the message “IVOTCIRSUO”.

It was quickly noticed that being applied separately, both substitution cipher and permutation cipher were rather weak. But when being combined, they were strong enough for those times. Thus, the most important messages were first encrypted using substitution cipher, and then the result was encrypted using permutation cipher. Encrypting the message “VICTORIOUS” with the combination of the ciphers described above one gets the message “JWPUDJSTVP”.

Archeologists have recently found the message engraved on a stone plate. At the first glance it
seemed completely meaningless, so it was suggested that the message was encrypted with some substi-
tution and permutation ciphers. They have conjectured the possible text of the original message that
was encrypted, and now they want to check their conjecture. They need a computer program to do it,
so you have to write one.

input

Input file contains several test cases. Each of them consists of two lines. The first line contains the message engraved on the plate. Before encrypting, all spaces and punctuation marks were removed, so the encrypted message contains only capital letters of the English alphabet. The second line contains the original message that is conjectured to be encrypted in the message on the first line. It also contains only capital letters of the English alphabet. The lengths of both lines of the input file are equal and do not exceed 100.

output

For each test case, print one output line. Output ‘YES’ if the message on the first line of the input file could be the result of encrypting the message on the second line, or ‘NO’ in the other case.

Sample Input

JWPUDJSTVP
VICTORIOUS
MAMA
ROME
HAHA
HEHE
AAA
AAA
NEERCISTHEBEST
SECRETMESSAGES

Sanple output

YES
NO
YES
YES
NO


题目的意思是一个字符串经重排和一一映射和能不能得到另一个,一一映射理解好就没问题
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define maxn 100000
char str1[maxn],str2[maxn];
int s1[26],s2[26];//统计两个字符串字母个数 
int cmp( const void *a,const void *b){
	return *(int *)a>*(int *)b?1:-1;
}
int main()
{
	while(scanf("%s%s",str1,str2)!=EOF){
		memset(s1,0,sizeof(s1));memset(s2,0,sizeof(s2));
		for( int i=0; i<strlen(str1); i++ )s1[str1[i]-'A']++;
		for( int i=0; i<strlen(str2); i++ )s2[str2[i]-'A']++;
		qsort(s1,26,sizeof(s1[0]),cmp);qsort(s2,26,sizeof(s2[0]),cmp);//对两个数组排序 
		int i;
		for( i=0; i<26; i++ ){
			if(s1[i]!=s2[i]) break;//判断是否相等 
		}
		if(i==26) printf("YES\n");
		else printf("NO\n");
	}
	return 0;
}
相关标签: 第四章