結果

問題 No.449 ゆきこーだーの雨と雪 (4)
ユーザー kimiyukikimiyuki
提出日時 2016-11-24 23:39:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,386 ms / 5,000 ms
コード長 2,514 bytes
コンパイル時間 1,497 ms
コンパイル使用メモリ 96,136 KB
実行使用メモリ 18,612 KB
最終ジャッジ日時 2024-09-22 10:28:38
合計ジャッジ時間 12,161 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 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,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 159 ms
10,568 KB
testcase_13 AC 175 ms
10,968 KB
testcase_14 AC 214 ms
10,848 KB
testcase_15 AC 151 ms
10,800 KB
testcase_16 AC 192 ms
10,880 KB
testcase_17 AC 187 ms
10,916 KB
testcase_18 AC 159 ms
10,464 KB
testcase_19 AC 207 ms
10,920 KB
testcase_20 AC 220 ms
10,752 KB
testcase_21 AC 176 ms
10,904 KB
testcase_22 AC 175 ms
11,020 KB
testcase_23 AC 157 ms
10,432 KB
testcase_24 AC 193 ms
10,748 KB
testcase_25 AC 179 ms
10,468 KB
testcase_26 AC 204 ms
10,284 KB
testcase_27 AC 176 ms
10,792 KB
testcase_28 AC 177 ms
10,992 KB
testcase_29 AC 210 ms
10,752 KB
testcase_30 AC 154 ms
10,772 KB
testcase_31 AC 172 ms
10,836 KB
testcase_32 AC 236 ms
11,056 KB
testcase_33 AC 217 ms
11,160 KB
testcase_34 AC 185 ms
10,684 KB
testcase_35 AC 165 ms
11,100 KB
testcase_36 AC 181 ms
10,600 KB
testcase_37 AC 159 ms
18,560 KB
testcase_38 AC 824 ms
18,052 KB
testcase_39 AC 191 ms
17,416 KB
testcase_40 AC 1,386 ms
17,436 KB
testcase_41 AC 263 ms
18,276 KB
testcase_42 AC 752 ms
18,208 KB
testcase_43 AC 189 ms
17,828 KB
testcase_44 AC 127 ms
17,908 KB
testcase_45 AC 141 ms
18,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <numeric>
#include <functional>
#include <cassert>
#define repeat(i,n) for (int i = 0; (i) < (n); ++(i))
#define whole(f,x,...) ([&](decltype((x)) whole) { return (f)(begin(whole), end(whole), ## __VA_ARGS__); })(x)
using namespace std;
template <typename T> T sortunique(T xs) { whole(sort, xs); xs.erase(whole(unique, xs), xs.end()); return xs; }
template <typename T> int index(vector<T> const & xs, T x) { return whole(lower_bound, xs, x) - xs.begin(); }
template <typename T>
struct binary_indexed_tree { // on monoid
    vector<T> data;
    T unit;
    function<T (T,T)> append; // associative
    template <typename F>
    binary_indexed_tree(size_t n, T a_unit, F a_append) : data(n, a_unit), unit(a_unit), append(a_append) {}
    void point_append(size_t i, T w) { // data[i] += w
        for (size_t j = i+1; j <= data.size(); j += j & -j) data[j-1] = append(data[j-1], w);
    }
    int initial_range_concat(size_t i) { // sum [0, i)
        T acc = unit;
        for (size_t j = i; 0 < j; j -= j & -j) acc = append(acc, data[j-1]);
        return acc;
    }
};
int scoreof(int level, int solved) {
    assert (solved >= 1);
    return 50*level + 250*level/(4+solved);
}
int main() {
    // input
    int n; cin >> n;
    vector<int> level(n);
    repeat (i,n) cin >> level[i];
    int query; cin >> query;
    vector<string> name(query);
    vector<char> action(query);
    repeat (t,query) cin >> name[t] >> action[t];
    // prepare
    const int max_score = 100 * whole(accumulate, level, 0);
    vector<string> ids = sortunique(name);
    int m = ids.size();
    // answer
    vector<int> solved(n);
    vector<int> score(m);
    binary_indexed_tree<int> bit(max_score + 1, int(), plus<int>());
    bit.point_append(0, m);
    vector<vector<int> > tiebreak(max_score + 1);
    repeat (t,query) {
        int id = index(ids, name[t]);
        int j = score[id];
        if (action[t] == '?') {
            int a = bit.initial_range_concat(j);
            int b = tiebreak[j].size() - (whole(find, tiebreak[j], id) - tiebreak[j].begin()) - 1;
            cout << m-a-b << endl;
        } else {
            bit.point_append(j, -1);
            if (j) tiebreak[j].erase(whole(find, tiebreak[j], id));
            int i = action[t] - 'A';
            solved[i] += 1;
            j = score[id] += scoreof(level[i], solved[i]);
            bit.point_append(j, +1);
            tiebreak[j].push_back(id);
        }
    }
    return 0;
}
0