题目如下:
List of Conquests
Input: standard input
Output: standard output
Time Limit: 2 seconds
In Act I, Leporello is telling Donna Elvira about his master's long list of conquests:
``This is the list of the beauties my master has loved, a list I've made out myself: take a look, read it with me. In
Italy six hundred and forty, in Germany two hundred and thirty-one, a hundred in France, ninety-one in Turkey; but in
Spain already a thousand and three! Among them are country girls, waiting-maids, city beauties; there are countesses,
baronesses, marchionesses, princesses: women of every rank, of every size, of every age.'' (Madamina, il catalogo è
questo)
As Leporello records all the ``beauties'' Don Giovanni ``loved'' in chronological order, it is very troublesome for him to
present his master's conquest to others because he needs to count the number of ``beauties'' by their nationality each
time. You are to help Leporello to count.
Input
The input consists of at most 2000 lines, but the first. The first line contains a number n, indicating that there will be
n more lines. Each following line, with at most 75 characters, contains a country (the first word) and the name of a woman
(the rest of the words in the line) Giovanni loved. You may assume that the name of all countries consist of only one
word.
Output
The output consists of lines in alphabetical order. Each line starts with the name of a country, followed by the total
number of women Giovanni loved in that country, separated by a space.
Sample Input
3
Spain Donna Elvira
England Jane Doe
Spain Donna Anna
Sample Output
England 1
Spain 2
简单的搜索题,一遍AC。
AC的代码如下:
#include
#include
#include
int cmp(const void*a,const void *b)
{
return strcmp((char *)a,(char *)b);
}
int main()
{
int n,i=0,j=0,Count=1,k;
char s1[80],s2[2500][80],c;
memset(s2,'\0',sizeof(s2));
scanf("%d\n",&n);
k=n;
while(n--)
{
j=0;
memset(s1,'\0',sizeof(s1));
while(c=getchar())
{
if(c!='\n')
{
if(c!=' ')
{
s1[j]=c;
j++;
}
else
{
s1[j]='\0';
j++;
}
}
else
{
for(j=0; s1[j]!='\0'; j++)
s2[i][j]=s1[j];
s2[i][j]='\0';
i++;
break;
}
}
}
qsort(s2,k,80*sizeof(char),cmp);
for(i=0; i<=k-2; i++)
{
if(strcmp(s2[i],s2[i+1])==0)
Count++;
else
{
printf("%s %d\n",s2[i],Count);
Count=1;
}
}
if(strcmp(s2[k-2],s2[k-1])==0)
printf("%s %d\n",s2[k-2],Count);
else
printf("%s %d\n",s2[k-1],Count);
return 0;
}