結果
問題 | No.877 Range ReLU Query |
ユーザー | kyuna |
提出日時 | 2019-10-06 21:01:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,122 bytes |
コンパイル時間 | 875 ms |
コンパイル使用メモリ | 84,172 KB |
実行使用メモリ | 8,192 KB |
最終ジャッジ日時 | 2024-10-11 02:00:36 |
合計ジャッジ時間 | 6,290 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,248 KB |
testcase_02 | AC | 4 ms
5,248 KB |
testcase_03 | AC | 4 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 3 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | AC | 4 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 3 ms
5,248 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
#include <algorithm> #include <iostream> #include <vector> #include <numeric> #include <functional> using namespace std; template<typename Monoid> struct SegmentTree { using F = function<Monoid(Monoid, Monoid)>; const F f; const Monoid M1; int sz; vector<Monoid> dat; SegmentTree(int n, const F f, const Monoid &M1) : f(f), M1(M1), sz(1) { while (sz < n) sz <<= 1; dat.assign(sz * 2, M1); } void set(int k, const Monoid &x) { dat[k + sz] = x; } void build() { for (int k = sz - 1; k > 0; k--) { dat[k] = f(dat[2 * k], dat[2 * k + 1]); } } void update(int k, const Monoid &x) { dat[k += sz] = x; while (k >>= 1) dat[k] = f(dat[2 * k], dat[2 * k + 1]); } Monoid get(int a, int b) { // [a, b) Monoid L = M1, R = M1; for (a += sz, b += sz; a < b; a >>= 1, b >>= 1) { if (a & 1) L = f(L, dat[a++]); if (b & 1) R = f(dat[--b], R); } return f(L, R); } Monoid operator[](const int &k) const { return dat[k + sz]; } friend ostream& operator<<(ostream& os, SegmentTree<Monoid> &seg) { for (int i = 0; i < seg.sz; i++) os << seg[i] << " "; return os; } }; int main() { int n, q; cin >> n >> q; vector<int> a(n); for (int &ai: a) cin >> ai; vector<int> l(q), r(q), x(q); for (int i = 0; i < q; i++) { int _; cin >> _ >> l[i] >> r[i] >> x[i]; l[i]--; } vector<int> ord(n + q); iota(ord.begin(), ord.end(), 0); auto comp = [&](int s, int t) { #define g(i) (i < n ? a[i] : x[i - n]) return g(s) > g(t); }; sort(ord.begin(), ord.end(), comp); auto f = [](int a, int b) { return a + b; }; SegmentTree<int> num(n, f, 0), sum(n, f, 0); vector<int> ans(q); for (int i: ord) { if (i < n) { num.update(i, 1); sum.update(i, a[i]); } else { i -= n; ans[i] = sum.get(l[i], r[i]) - num.get(l[i], r[i]) * x[i]; } } for (int i = 0; i < q; i++) cout << ans[i] << endl; return 0; }