cf---A. Amusing Joke

So, the New Year holidays are over. Santa Claus and his colleagues can take a rest and have guests at last. When two “New Year and Christmas Men” meet, thear assistants cut out of cardboard the letters from the guest’s name and the host’s name in honor of this event. Then the hung the letters above the main entrance. One night, when everyone went to bed, someone took all the letters of our characters’ names. Then he may have shuffled the letters and put them in one pile in front of the door.

The next morning it was impossible to find the culprit who had made the disorder. But everybody wondered whether it is possible to restore the names of the host and his guests from the letters lying at the door? That is, we need to verify that there are no extra letters, and that nobody will need to cut more letters.

Help the “New Year and Christmas Men” and their friends to cope with this problem. You are given both inscriptions that hung over the front door the previous night, and a pile of letters that were found at the front door next morning.

Input
The input file consists of three lines: the first line contains the guest’s name, the second line contains the name of the residence host and the third line contains letters in a pile that were found at the door in the morning. All lines are not empty and contain only uppercase Latin letters. The length of each line does not exceed 100.

Output
Print “YES” without the quotes, if the letters in the pile could be permuted to make the names of the “New Year and Christmas Men”. Otherwise, print “NO” without the quotes.

题意:字符匹配问题,检测letter里有无包含两个姓名

AC代码

#include<bits/stdc++.h>
using namespace std;
int main()
{
	char str1[105],str2[105];
	int a[26];
	char letter[220];
	scanf("%s",str1);
	scanf("%s",str2);
	scanf("%s",letter);
	for(int i=0;i<26;i++)
	{
		a[i]=0;
	}
	for(int i=0;str1[i]!='\0';i++)
	{
		a[str1[i]-'A']++;
	}
	for(int i=0;str2[i]!='\0';i++)
	{
		a[str2[i]-'A']++;
	}
	for(int i=0;letter[i]!='\0';i++)
	{
		a[letter[i]-'A']--;
	}
	int i;
	for(i=0;i<26;i++)
	{
		if(a[i]!=0)
		{
			break;
		}
	}
	if(i==26)
	cout<<"YES"<<endl;
	else
	cout<<"NO"<<endl;
	return 0;
}
上一篇:A+B Problem


下一篇:微信小程序笑话小程序开发