結果
問題 | No.877 Range ReLU Query |
ユーザー | QCFium |
提出日時 | 2019-09-06 22:04:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,650 bytes |
コンパイル時間 | 2,144 ms |
コンパイル使用メモリ | 187,192 KB |
実行使用メモリ | 168,448 KB |
最終ジャッジ日時 | 2024-06-24 17:57:21 |
合計ジャッジ時間 | 24,506 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 4 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | TLE | - |
testcase_12 | AC | 1,839 ms
106,404 KB |
testcase_13 | AC | 1,380 ms
79,860 KB |
testcase_14 | AC | 1,507 ms
84,352 KB |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | AC | 928 ms
72,576 KB |
testcase_20 | TLE | - |
ソースコード
#include <bits/stdc++.h> int ri() { int n; scanf("%d", &n); return n; } struct SegTree { std::vector<std::map<int, int64_t, std::greater<int> > > feed; // feed std::vector<std::vector<int> > data; // real data int n; SegTree (const std::vector<int> &a) { for (n = 1; n < (int) a.size(); n *= 2); data.resize(2 * n); feed.resize(2 * n); for (int i = 0; i < (int) a.size(); i++) data[i + n] = {a[i]}; for (int i = n - 1; i; i--) { data[i] = data[i << 1]; for (auto j : data[i << 1 | 1]) data[i].push_back(j); std::sort(data[i].begin(), data[i].end(), std::greater<>()); } } void query_reserve(int l, int r, int x) { for (l += n, r += n; l < r; l >>= 1, r >>= 1) { if (r & 1) feed[--r][x]; if (l & 1) feed[l++][x]; } } int64_t query(int l, int r, int x) { int64_t res = 0; for (l += n, r += n; l < r; l >>= 1, r >>= 1) { if (r & 1) res += feed[--r][x]; if (l & 1) res += feed[l++][x]; } return res; } void fetch() { for (int i = 1; i < 2 * n; i++) { int head = 0; int64_t sum = 0; for (auto &j : feed[i]) { int cur = j.first; while (head < data[i].size() && data[i][head] >= cur) sum += data[i][head++]; j.second = sum - head * (int64_t) cur; } } } }; int main() { int n = ri(); int q = ri(); std::vector<int> a(n); for (int i = 0; i < n; i++) a[i] = ri(); SegTree tree(a); int l[q], r[q], x[q]; for (int i = 0; i < q; i++) { ri(); l[i] = ri() - 1, r[i] = ri() - 1; x[i] = ri(); tree.query_reserve(l[i], r[i] + 1, x[i]); } tree.fetch(); for (int i = 0; i < q; i++) printf("%lld\n", (long long) tree.query(l[i], r[i] + 1, x[i])); return 0; }