#30554: 很爛的參考解答


zaqxswdce26@gmail.com (卡比獸)

學校 : 不指定學校
編號 : 192970
來源 : [49.216.222.215]
最後登入時間 :
2023-10-24 13:17:05
a130. 12015 - Google is Feeling Lucky -- UVa12015 | From: [101.12.46.110] | 發表日期 : 2022-05-29 06:35

#include <iostream>
#include <vector>
#include <string>
#include <map>
using namespace std;
int main(void)
{
    ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
    int a,b,c,d;
    string str;
    cin>>a;
    for(d=1;d<=a;d++)
    {
        map<int,vector<string> > ans;
        b=10;
        while(b--)
        {
            cin>>str>>c;
            ans[c].push_back(str);
        }
        cout<<"Case #"<<d<<":\n";
        for(auto &i:ans.rbegin()->second)
            cout<<i<<"\n";
    }

    return 0;
}

 
ZeroJudge Forum