結果

問題 No.628 Tagの勢い
ユーザー ミドリムシミドリムシ
提出日時 2018-01-05 21:44:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 965 bytes
コンパイル時間 1,104 ms
コンパイル使用メモリ 89,416 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-16 19:58:38
合計ジャッジ時間 1,757 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <map>
using namespace std;

bool compare(pair<string, int> tag1, pair<string, int> tag2){
    if(tag1.second != tag2.second){
        return tag1.second > tag2.second;
    }else{
        return tag1.first < tag2.first;
    }
}

int main(){
    int N;
    cin >> N;
    map<string, int> scoreboard;
    for(int i = 0; i < N; i++){
        int No, M, S;
        cin >> No >> M >> S;
        for(int j = 0; j < M; j++){
            string Tag;
            cin >> Tag;
            scoreboard[Tag] += S;
        }
    }
    pair<string, int> scoreboard_array[scoreboard.size()];
    int count = 0;
    for(auto i: scoreboard){
        scoreboard_array[count] = i;
        count++;
    }
    sort(scoreboard_array, scoreboard_array + scoreboard.size(), compare);
    for(int i = 0; i < min(10, int(scoreboard.size())); i++){
        cout << scoreboard_array[i].first << " " << scoreboard_array[i].second << endl;
    }
}
0