|----apple(3)
#include<stdio.h> #include<string.h> #include<algorithm> using namespace std; struct node { int num; char name[200],where[200]; }a[200]; int cmp(node x,node y) { if(strcmp(x.where,y.where)!=0) return strcmp(x.where,y.where)<0; if(strcmp(x.name,y.name)!=0) return strcmp(x.name,y.name)<0; } int main() { int i,j,n,m,sum,v; char s[200][200]; char flag[200]; scanf("%d",&n); while(n--) { memset(flag,0,sizeof(flag)); memset(a,0,sizeof(a)); scanf("%d",&m); for(i=0;i<m;i++) scanf("%s%s%d",&a[i].name,&a[i].where,&a[i].num); sort(a,a+m,cmp); v=1; strcpy(s[0],a[0].where); for(i=1;i<m;i++) { if(strcmp(s[v-1],a[i].where)!=0) strcpy(s[v++],a[i].where); } int sign; for(i=0;i<v;i++) { printf("%s\n",s[i]); sum=0;sign=0; for(j=0;j<m;j++) { if(strcmp(s[i],a[j].where)==0) { sign++; if(sign==1) { strcpy(flag,a[j].name); sum+=a[j].num; } else { if(strcmp(flag,a[j].name)!=0) { printf(" |----%s(%d)\n",flag,sum); sum=0;sign=1; memset(flag,0,sizeof(flag)); strcpy(flag,a[j].name); sum+=a[j].num; } else { sum+=a[j].num; } } } } printf(" |----%s(%d)\n",flag,sum); } if(n!=0) printf("\n"); } return 0; }