結果
問題 | No.628 Tagの勢い |
ユーザー | ミドリムシ |
提出日時 | 2018-01-05 21:44:40 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 965 bytes |
コンパイル時間 | 1,134 ms |
コンパイル使用メモリ | 89,344 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-07 22:08:16 |
合計ジャッジ時間 | 2,133 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
#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; } }