結果
問題 | No.449 ゆきこーだーの雨と雪 (4) |
ユーザー | tubo28 |
提出日時 | 2016-11-19 00:23:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 134 ms / 5,000 ms |
コード長 | 1,781 bytes |
コンパイル時間 | 4,769 ms |
コンパイル使用メモリ | 206,436 KB |
実行使用メモリ | 21,048 KB |
最終ジャッジ日時 | 2024-09-22 10:16:46 |
合計ジャッジ時間 | 7,127 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | AC | 3 ms
6,944 KB |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 57 ms
6,944 KB |
testcase_13 | AC | 87 ms
9,088 KB |
testcase_14 | AC | 76 ms
9,088 KB |
testcase_15 | AC | 92 ms
9,088 KB |
testcase_16 | AC | 82 ms
9,088 KB |
testcase_17 | AC | 86 ms
8,960 KB |
testcase_18 | AC | 58 ms
6,944 KB |
testcase_19 | AC | 76 ms
9,088 KB |
testcase_20 | AC | 76 ms
9,088 KB |
testcase_21 | AC | 88 ms
9,088 KB |
testcase_22 | AC | 86 ms
9,088 KB |
testcase_23 | AC | 57 ms
6,940 KB |
testcase_24 | AC | 82 ms
9,088 KB |
testcase_25 | AC | 53 ms
6,940 KB |
testcase_26 | AC | 46 ms
6,940 KB |
testcase_27 | AC | 89 ms
9,088 KB |
testcase_28 | AC | 87 ms
9,216 KB |
testcase_29 | AC | 76 ms
9,088 KB |
testcase_30 | AC | 94 ms
9,088 KB |
testcase_31 | AC | 88 ms
9,088 KB |
testcase_32 | AC | 74 ms
9,088 KB |
testcase_33 | AC | 80 ms
9,088 KB |
testcase_34 | AC | 54 ms
6,940 KB |
testcase_35 | AC | 92 ms
9,088 KB |
testcase_36 | AC | 52 ms
6,944 KB |
testcase_37 | AC | 134 ms
21,048 KB |
testcase_38 | AC | 83 ms
12,464 KB |
testcase_39 | AC | 71 ms
12,468 KB |
testcase_40 | AC | 78 ms
12,464 KB |
testcase_41 | AC | 107 ms
12,596 KB |
testcase_42 | AC | 102 ms
12,468 KB |
testcase_43 | AC | 40 ms
6,940 KB |
testcase_44 | AC | 43 ms
6,940 KB |
testcase_45 | AC | 133 ms
21,048 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i,n) for(int i = 0; i < (int)(n); i++) #define all(c) begin(c), end(c) #define dump(x) cerr << __LINE__ << ":\t" #x " = " << x << endl #include<ext/pb_ds/assoc_container.hpp> #include<ext/pb_ds/tree_policy.hpp> #include<ext/pb_ds/tag_and_trait.hpp> using namespace __gnu_pbds; using Key = ll; typedef tree< Key, null_type, less<Key>, rb_tree_tag, tree_order_statistics_node_update> ordered_set; int N; int star[30]; int T; int solved[30]; // user-> int score[100010], lastsub[100010]; unordered_map<string,int> f; int main(){ cin.tie(0); ios::sync_with_stdio(0); while(cin >> N){ memset(solved, 0, sizeof solved); memset(lastsub, 0, sizeof lastsub); memset(score, 0, sizeof score); rep(i,N) cin >> star[i]; cin >> T; int id = 0; ordered_set tree; rep(i,T){ string name; cin >> name; auto res = f.emplace(name, id); if(res.second) res.first->second = id++; int man = res.first->second; char str[10]; cin >> str; Key cur = -score[man]*1000000000LL + lastsub[man]; if(str[0] == '?'){ int ord = tree.order_of_key(cur); cout << ord + 1 << '\n'; } else { int prob = str[0] - 'A'; int s = 50*star[prob] + 50*star[prob] / (0.8 + 0.2*(solved[prob]+1)); ++solved[prob]; score[man] += s; lastsub[man] = i; auto nxt = -score[man]*1000000000LL +lastsub[man]; tree.erase(cur); tree.insert(nxt); } } } }