結果

問題 No.628 Tagの勢い
ユーザー NoiriNoiri
提出日時 2019-01-25 05:20:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 596 bytes
コンパイル時間 2,481 ms
コンパイル使用メモリ 188,796 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-07 23:03:04
合計ジャッジ時間 2,648 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
6,816 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 4 ms
6,816 KB
testcase_13 WA -
testcase_14 AC 4 ms
6,816 KB
testcase_15 WA -
testcase_16 AC 3 ms
6,816 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    int n;
    cin >> n;
    map<string, int> m;
    for(int i=0; i<n; i++){
        int img, num, point;
        cin >> img >> num >> point;
        for(int i=0; i<num; i++){
            string s;
            cin >> s;
            m[s] += point;
        }
    }

    vector<pair<int, string>> v;
    for(auto p :m) v.push_back(make_pair(p.second, p.first));
    sort(v.rbegin(), v.rend());
    for(int i=0; i<10; i++){
        if(v.size() <= i) break;
        else cout << v[i].second << " " << v[i].first << endl;
    }
    return 0;
}
0