結果
問題 | No.877 Range ReLU Query |
ユーザー | Y17 |
提出日時 | 2019-09-06 22:20:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,160 bytes |
コンパイル時間 | 1,930 ms |
コンパイル使用メモリ | 171,372 KB |
実行使用メモリ | 14,324 KB |
最終ジャッジ日時 | 2024-11-08 10:05:49 |
合計ジャッジ時間 | 8,888 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
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 | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:84:21: warning: ‘lp’ may be used uninitialized in this function [-Wmaybe-uninitialized] 84 | while(vec[lp].first <= x){ | ^
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long template <class Monoid> struct SegmentTree{ using Func = function<Monoid(Monoid, Monoid)>; int size; vector<Monoid> seg; const Func merge; const Monoid def; SegmentTree(int n, Monoid d, const Func f): merge(f), def(d){ for(size = 1; size <= n; size <<= 1); seg.assign(size*2, def); } Monoid& operator[] (int i) { return seg[i+size]; }; void build(){ for(int i = size-1;i >= 0;i--) seg[i] = merge(seg[i*2], seg[i*2+1]); } void update(int i, Monoid val){ seg[i += size] = val; while(i >>= 1) seg[i] = merge(seg[i*2], seg[i*2+1]); } void add(int i, Monoid val){ update(i, val+seg[i+size]); } Monoid get(int a, int b){ Monoid l = def, r = def; for(a += size, b += size; a < b; a >>= 1, b >>= 1){ if(a & 1) l = merge(l, seg[a++]); if(b & 1) r = merge(r, seg[--b]); } return merge(l, r); } }; signed main(){ int n, q; cin >> n >> q; typedef pair<int, int> P; SegmentTree<P> seg(n, {0, 0}, [](P a, P b){ return make_pair(a.first + b.first, a.second + b.second); }); vector<P> vec; for(int i = 0;i < n;i++){ int a; cin >> a; seg[i] = {a, 1}; vec.push_back({a, i}); } seg.build(); sort(vec.begin(), vec.end()); priority_queue<P, vector<P>, greater<P>> que; int ans[100010] = {}; int ll[100010], rr[100010]; for(int i = 0;i < q;i++){ int a, x; cin >> a >> ll[i] >> rr[i] >> x; ll[i]--; que.push({x, i}); } int lp; vec.push_back({1000000007, 0}); while(!que.empty()){ int idx = que.top().second; int x = que.top().first; int l = ll[idx]; int r = rr[idx]; que.pop(); while(vec[lp].first <= x){ seg.update(vec[lp].second, {0, 0}); lp++; } auto a = seg.get(l, r); ans[idx] = a.first - a.second*x; } for(int i = 0;i < q;i++){ cout << ans[i] << endl; } return 0; }