-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10420.cpp
67 lines (65 loc) · 997 Bytes
/
10420.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<ctype.h>
#include <iostream>
int main()
{
int i,j,c[5000],n,f,l,k;
char a[2050][200]={0},b[2050][200]={0},temp[2005]={0},st[1000]={0},st1[1000]={0};
scanf("%d",&n);
getchar();
for(i=0;i<n;i++)
{
gets(st);
l=strlen(st);
j=0;
for(k=0;k<l;k++)
{
if(st[k]!=' ')
{
while(st[k]!=' ')
{
a[i][j++]=st[k];
k++;
if(k==l)
break;
}
break;
}
}
}
for(i=0;i<n-1;i++)
for(j=0;j<n-1;j++)
if(strcmp(a[j],a[j+1])>0)
{
strcpy(temp,a[j]);
strcpy(a[j],a[j+1]);
strcpy(a[j+1],temp);
}
c[0]=0;
f=0;
strcpy(temp,a[0]);
strcpy(b[0],a[0]);
for(j=0;j<n;j++)
for(i=j;i<n;i++)
{
if(strcmp(temp,a[i])==0)
{
c[f]=c[f]+1;
j++;
}
else
{
f++;
c[f]=0;
strcpy(temp,a[i]);
strcpy(b[f],a[i]);
j--;
break;
}
}
for(i=0;i<f+1;i++)
printf("%s %d\n",b[i],c[i]);
return 0;
}