题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1263
题目大意:
Joe经营着一个不大的水果店.他认为生存之道就是经营最受顾客欢迎的水果.现在他想要一份水果销售情况的明细表,这样Joe就可以很容易掌握所有水果的销售情况了.
每组测试数据的第一行是一个整数M(0<M<=100),表示工有M次成功的交易.其后有M行数据,每行表示一次交易,由水果名称(小写字母组成,长度不超过80),水果产地(小写字母组成,长度不超过80)和交易的水果数目(正整数,不超过100)组成.
两组测试数据之间有一个空行.最后一组测试数据之后没有空行.
#include <algorithm> #include <iostream> #include <map> #include <string> using namespace std; int main() { int n, m, i,num,a; string loc, name; map<string, map<string, int>>Map; map<string, int>mmap; scanf("%d", &n); while(n--) { Map.clear(); scanf("%d", &m); for (i = 0; i < m; i++) { cin >> name >> loc >> num; Map[loc][name] += num; } map<string, map<string, int>>::iterator it; map<string, int>::iterator ii; for (it = Map.begin(); it != Map.end(); it++) { cout << it->first << endl; for (ii = it->second.begin(); ii != it->second.end(); ii++) { printf(" |----"); cout << ii->first << "(" << ii->second << ")"<<endl; } } if (n)printf("\n"); //每组数据之间一个空格,最后一组数据后无空格 } return 0; }