結果
問題 | No.447 ゆきこーだーの雨と雪 (2) |
ユーザー | face4 |
提出日時 | 2018-09-19 15:15:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 20 ms / 2,000 ms |
コード長 | 1,499 bytes |
コンパイル時間 | 1,540 ms |
コンパイル使用メモリ | 104,044 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 08:15:31 |
合計ジャッジ時間 | 2,834 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 5 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 15 ms
5,376 KB |
testcase_06 | AC | 17 ms
5,376 KB |
testcase_07 | AC | 10 ms
5,376 KB |
testcase_08 | AC | 11 ms
5,376 KB |
testcase_09 | AC | 19 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 6 ms
5,376 KB |
testcase_12 | AC | 8 ms
5,376 KB |
testcase_13 | AC | 16 ms
5,376 KB |
testcase_14 | AC | 19 ms
5,376 KB |
testcase_15 | AC | 6 ms
5,376 KB |
testcase_16 | AC | 5 ms
5,376 KB |
testcase_17 | AC | 6 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 20 ms
5,376 KB |
testcase_20 | AC | 20 ms
5,376 KB |
testcase_21 | AC | 7 ms
5,376 KB |
testcase_22 | AC | 6 ms
5,376 KB |
testcase_23 | AC | 7 ms
5,376 KB |
testcase_24 | AC | 15 ms
5,376 KB |
testcase_25 | AC | 19 ms
5,376 KB |
testcase_26 | AC | 10 ms
5,376 KB |
testcase_27 | AC | 9 ms
5,376 KB |
ソースコード
#include<iostream> #include<algorithm> #include<vector> #include<map> using namespace std; int n; struct data{ public: string name; int lastsub, sum; vector<int> score; data() {}; data(string na, int ls, int s){ name = na; lastsub = ls; sum = s; score.resize(26, 0); }; bool operator<(const data other) const{ if(sum != other.sum) return sum > other.sum; else return lastsub < other.lastsub; } void print(){ cout << name; for(int i = 0; i < n; i++) cout << " " << score[i]; cout << " " << sum << endl; } }; int main(){ cin >> n; int l[n]; for(int i = 0; i < n; i++) cin >> l[i]; int t; cin >> t; map<string, data> res; string name; char p; int ac[26] = {}; for(int i = 0; i < t; i++){ cin >> name >> p; int problem = p-'A'; int getsc = 50*l[problem] + 250*l[problem]/(4 + ac[problem]+1); ac[problem]++; if(res.count(name)){ res[name].lastsub = i; res[name].score[problem] = getsc; res[name].sum += getsc; }else{ res[name] = data(name, i, getsc); res[name].score[problem] = getsc; } } vector<data> v; for(auto x : res) v.push_back(x.second); sort(v.begin(), v.end()); for(int i = 0; i < v.size(); i++){ cout << i+1 << " "; v[i].print(); } return 0; }