水果(STLmap的嵌套调用)



E -
水果
Time Limit:1000MS    Memory Limit:32768KB    64bit IO Format:%I64d & %I64u
Submit Status

Description

夏天来了~~好开心啊,呵呵,好多好多水果~~
Joe经营着一个不大的水果店.他认为生存之道就是经营最受顾客欢迎的水果.现在他想要一份水果销售情况的明细表,这样Joe就可以很容易掌握所有水果的销售情况了.
 

Input

第一行正整数N(0 每组测试数据的第一行是一个整数M(0
 

Output

对于每一组测试数据,请你输出一份排版格式正确(请分析样本输出)的水果销售情况明细表.这份明细表包括所有水果的产地,名称和销售数目的信息.水果先按产地分类,产地按字母顺序排列;同一产地的水果按照名称排序,名称按字母顺序排序.
两组测试数据之间有一个空行.最后一组测试数据之后没有空行.
 

Sample Input

 
     
1 5 apple shandong 3 pineapple guangdong 1 sugarcane guangdong 1 pineapple guangdong 3 pineapple guangdong 1
 

Sample Output

 
   
guangdong |----pineapple(5) |----sugarcane(1) shandong |----apple(3) //要用G++交,C++编译错误,晕。。。。
#include 
#include 
#include 
#include 

using namespace std;
map< string ,map >ans;//map的嵌套调用(水果产地,水果名,和水果个数);
//map默认以key(第一个参数)从小到大排序;

int main()
{
    //freopen("in.txt","r",stdin);
    int T,cnt = 0,n;
    string c = "   |----";
    scanf("%d",&T);
    while(T--)
    {
        if(cnt) puts("");
        cnt = 1;
        scanf("%d",&n);
        ans.clear(); //清空map容器;
        for(int i = 0; i < n; i++)
        {
            string a, b;
            int tot;
            cin>>a>>b>>tot;
            a = c + a; //预处理a方便输出格式的控制
            ans[b][a] += tot;
        }
        map< string , map< string, int > > :: iterator it;
        for(it = ans.begin(); it != ans.end(); it++)
        {
            map :: iterator it1; //嵌套的迭代器;
            cout<< it -> first < second.begin(); it1 != it -> second.end(); it1++)
            {
                cout< first<<"("< second << ")"<


你可能感兴趣的:(STL)