結果
問題 | No.447 ゆきこーだーの雨と雪 (2) |
ユーザー | ei1333333 |
提出日時 | 2016-11-18 22:37:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 34 ms / 2,000 ms |
コード長 | 940 bytes |
コンパイル時間 | 2,082 ms |
コンパイル使用メモリ | 192,252 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-05-04 17:53:30 |
合計ジャッジ時間 | 2,974 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 6 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 15 ms
5,376 KB |
testcase_06 | AC | 28 ms
6,656 KB |
testcase_07 | AC | 12 ms
5,376 KB |
testcase_08 | AC | 15 ms
5,376 KB |
testcase_09 | AC | 25 ms
6,016 KB |
testcase_10 | AC | 5 ms
5,376 KB |
testcase_11 | AC | 6 ms
5,376 KB |
testcase_12 | AC | 9 ms
5,376 KB |
testcase_13 | AC | 19 ms
5,632 KB |
testcase_14 | AC | 23 ms
5,888 KB |
testcase_15 | AC | 7 ms
5,376 KB |
testcase_16 | AC | 6 ms
5,376 KB |
testcase_17 | AC | 6 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 34 ms
8,064 KB |
testcase_20 | AC | 25 ms
6,400 KB |
testcase_21 | AC | 7 ms
5,376 KB |
testcase_22 | AC | 6 ms
5,376 KB |
testcase_23 | AC | 9 ms
5,376 KB |
testcase_24 | AC | 23 ms
6,144 KB |
testcase_25 | AC | 29 ms
7,296 KB |
testcase_26 | AC | 12 ms
5,376 KB |
testcase_27 | AC | 11 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; int f(int N, int K) { return (50 * N + (50 * N) / (0.8 + 0.2 * K)); } int main() { int N, L[26], T, rank[26] = {}; cin >> N; for(int i = 0; i < N; i++) { cin >> L[i]; } cin >> T; map< string, map< int, int > > ranker; map< string, int > last; map< string, int > sum; for(int i = 0; i < T; i++) { string S; char P; cin >> S >> P; P -= 'A'; ranker[S][P] = f(L[P], ++rank[P]); last[S] = i; sum[S] += ranker[S][P]; } vector< pair< pair< int, int >, string > > name; for(auto &c: sum) name.push_back({{c.second, -last[c.first]}, c.first}); sort(begin(name), end(name)); reverse(begin(name), end(name)); for(int i = 0; i < name.size(); i++) { auto &obj = name[i]; cout << i + 1 << " " << obj.second; for(int j = 0; j < N; j++) cout << " " << ranker[obj.second][j]; cout << " " << obj.first.first << endl; } }