結果

問題 No.449 ゆきこーだーの雨と雪 (4)
ユーザー pekempeypekempey
提出日時 2016-11-19 00:42:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 412 ms / 5,000 ms
コード長 996 bytes
コンパイル時間 1,953 ms
コンパイル使用メモリ 184,400 KB
実行使用メモリ 24,820 KB
最終ジャッジ日時 2024-09-22 10:19:06
合計ジャッジ時間 14,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 405 ms
24,660 KB
testcase_13 AC 298 ms
18,508 KB
testcase_14 AC 277 ms
15,660 KB
testcase_15 AC 311 ms
19,716 KB
testcase_16 AC 291 ms
17,308 KB
testcase_17 AC 298 ms
17,428 KB
testcase_18 AC 396 ms
24,532 KB
testcase_19 AC 276 ms
15,640 KB
testcase_20 AC 273 ms
15,600 KB
testcase_21 AC 304 ms
18,264 KB
testcase_22 AC 308 ms
18,520 KB
testcase_23 AC 412 ms
24,820 KB
testcase_24 AC 311 ms
17,184 KB
testcase_25 AC 383 ms
23,000 KB
testcase_26 AC 308 ms
13,584 KB
testcase_27 AC 301 ms
18,276 KB
testcase_28 AC 302 ms
18,516 KB
testcase_29 AC 278 ms
15,648 KB
testcase_30 AC 328 ms
19,472 KB
testcase_31 AC 323 ms
18,872 KB
testcase_32 AC 277 ms
15,620 KB
testcase_33 AC 281 ms
16,056 KB
testcase_34 AC 402 ms
22,932 KB
testcase_35 AC 317 ms
19,044 KB
testcase_36 AC 401 ms
23,068 KB
testcase_37 AC 182 ms
18,688 KB
testcase_38 AC 207 ms
11,028 KB
testcase_39 AC 195 ms
11,032 KB
testcase_40 AC 193 ms
11,028 KB
testcase_41 AC 185 ms
13,328 KB
testcase_42 AC 182 ms
13,460 KB
testcase_43 AC 277 ms
13,108 KB
testcase_44 AC 276 ms
16,736 KB
testcase_45 AC 177 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

unordered_map<int64_t, int> bit;

void add(int64_t k, int v) {
    for (k++; k < 1e12; k += k & -k) bit[k] += v;
}

int sum(int64_t k) {
    int res = 0;
    for (k++; k > 0; k &= k - 1) res += bit[k];
    return res;
}

int main() {
    int n, T;
    cin >> n;
    vector<int> L(n);
    for (int i = 0; i < n; i++) scanf("%d", &L[i]);
    cin >> T;
    unordered_map<string, pair<int, int>> score;
    vector<int> cnt(n);
    for (int ii = T - 1; ii >= 0; ii--) {
        string name, prob;
        cin >> name >> prob;
        int s, t;
        tie(s, t) = score[name];
        if (prob[0] == '?') {
            printf("%d\n", score.size() - sum(s * T + t - 1));
        } else {
            int id = prob[0] - 'A';
            cnt[id]++;
            int ss = s + 50 * L[id] + 500 * L[id] / (8 + 2 * cnt[id]);
            if (s > 0) add(1LL * s * T + t, -1);
            add(ss * T + ii, 1);
            score[name] = { ss, ii };
        }
    }
}
0