結果
問題 | No.449 ゆきこーだーの雨と雪 (4) |
ユーザー | はまやんはまやん |
提出日時 | 2017-04-20 12:39:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,515 bytes |
コンパイル時間 | 1,791 ms |
コンパイル使用メモリ | 177,856 KB |
実行使用メモリ | 29,264 KB |
最終ジャッジ日時 | 2024-09-22 10:33:01 |
合計ジャッジ時間 | 13,870 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
11,640 KB |
testcase_01 | AC | 4 ms
11,480 KB |
testcase_02 | AC | 4 ms
12,404 KB |
testcase_03 | AC | 5 ms
12,044 KB |
testcase_04 | AC | 5 ms
13,092 KB |
testcase_05 | AC | 5 ms
12,392 KB |
testcase_06 | AC | 5 ms
11,692 KB |
testcase_07 | AC | 4 ms
12,060 KB |
testcase_08 | AC | 5 ms
13,308 KB |
testcase_09 | AC | 4 ms
11,652 KB |
testcase_10 | AC | 5 ms
12,128 KB |
testcase_11 | AC | 5 ms
11,348 KB |
testcase_12 | AC | 523 ms
12,496 KB |
testcase_13 | AC | 4,332 ms
22,476 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,a,b) for(int i=a;i<b;i++) int N, L[30], T; int M; string Dic[101010]; int ID[101010], Pro[101010]; //----------------------------------------------------------------------------------- string Name[101010]; char P[101010]; void init() { cin.tie(0); ios::sync_with_stdio(false); cin >> N; rep(i, 0, N) cin >> L[i]; cin >> T; rep(i, 0, T) cin >> Name[i] >> P[i]; map<string, int> za; rep(i, 0, T) za[Name[i]] = 0; M = za.size(); int idx = 0; for (auto& p : za) za[p.first] = idx, idx++; for (auto& p : za) Dic[p.second] = p.first; rep(i, 0, T) { ID[i] = za[Name[i]]; if(P[i] == '?') Pro[i] = -1; else Pro[i] = P[i] - 'A'; } } //----------------------------------------------------------------------------------- int cnt[30]; int E[101010][30]; int sm[101010], lastsub[101010]; int main() { init(); rep(t, 0, T) { int id = ID[t]; int pid = Pro[t]; if (pid < 0) { int ans = 1; rep(i, 0, M) if (i != id) { if (sm[id] < sm[i]) ans++; else if (sm[id] == sm[i] && lastsub[i] < lastsub[id]) ans++; } printf("%d\n", ans); } else { int rank = cnt[pid] + 1; cnt[pid]++; int p = 50 * L[pid] + 500 * L[pid] / (8 + 2 * rank); E[id][pid] = p; sm[id] += p; lastsub[id] = t; } } }