結果
問題 | No.1982 [Cherry 4th Tune B] 絶険 |
ユーザー | SSRS |
提出日時 | 2022-06-17 21:27:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,602 bytes |
コンパイル時間 | 1,887 ms |
コンパイル使用メモリ | 174,480 KB |
実行使用メモリ | 29,312 KB |
最終ジャッジ日時 | 2024-10-09 06:53:46 |
合計ジャッジ時間 | 17,135 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 11 ms
17,280 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | AC | 438 ms
23,680 KB |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | AC | 440 ms
23,552 KB |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; template <typename T> struct binary_indexed_tree{ int N; vector<T> BIT; binary_indexed_tree(int N): N(N), BIT(N + 1, 0){ } void add(int i, T x){ i++; while (i <= N){ BIT[i] += x; i += i & -i; } } T sum(int i){ T ans = 0; while (i > 0){ ans += BIT[i]; i -= i & -i; } return ans; } T sum(int L, int R){ return sum(R) - sum(L); } }; int main(){ int N, K, Q; cin >> N >> K >> Q; vector<int> L(K), R(K), C(K), H(K); for (int i = 0; i < K; i++){ cin >> L[i] >> R[i] >> C[i] >> H[i]; L[i]--; } vector<int> I(Q), X(Q); for (int i = 0; i < Q; i++){ cin >> I[i] >> X[i]; I[i]--; X[i]--; } vector<vector<int>> add(N), sub(N + 1); for (int i = 0; i < K; i++){ add[L[i]].push_back(i); sub[R[i]].push_back(i); } vector<vector<int>> query(N); for (int i = 0; i < Q; i++){ query[I[i]].push_back(i); } binary_indexed_tree<long long> BIT(K); vector<int> ans(Q); for (int i = 0; i < N; i++){ for (int j : add[i]){ BIT.add(j, H[j]); } for (int j : sub[i]){ BIT.add(j, -H[j]); } for (int j : query[i]){ if (BIT.sum(0, K) < X[j]){ ans[j] = -1; } else { int tv = K, fv = 0; while (tv - fv > 1){ int mid = (tv + fv) / 2; if (BIT.sum(0, mid) > X[j]){ tv = mid; } else { fv = mid; } } ans[j] = C[fv]; } } } for (int i = 0; i < Q; i++){ cout << ans[i] << endl; } }