hdu 1263 水果

#include 
#include 
#include 
#include 
#include 

using namespace std;

typedef map > mapp;

int main()
{
    int t, n, i, k;
    string fruit, place;
    mapp a;
    mapp::iterator ite;
    map::iterator jte;

    cin>>t;
    while(t--){
        cin>>n;
        for(i=0; i>fruit>>place>>k;
            a[place][fruit] += k;
        }

        for(ite=a.begin(); ite!=a.end(); ite++){
            cout<first<second).begin(); jte!=(ite->second).end(); jte++){
                cout<<"   |----"<first<<'('<second<<')'<

你可能感兴趣的:(排序,枚举,递归,分治,贪心,模拟)