結果
問題 | No.877 Range ReLU Query |
ユーザー | face4 |
提出日時 | 2019-09-06 22:15:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,589 bytes |
コンパイル時間 | 1,085 ms |
コンパイル使用メモリ | 77,616 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-06-24 19:21:04 |
合計ジャッジ時間 | 4,920 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
#include<iostream> #include<vector> using namespace std; typedef long long ll; const int INF = 1<<30; int n; vector<ll> sum; ll f(int i, int j){ return sum[min(n-1,j)] - (i > 0 ? sum[i-1] : 0); } struct STmax{ private: int n; vector<int> dat, dat2; public: STmax(vector<int> ini){ int siz = ini.size(); n = 1; while(n < siz) n *= 2; dat.resize(2*n-1, -INF); dat2.resize(2*n-1, INF); for(int i = 0; i < siz; i++) dat[n - 1 + i] = ini[i], dat2[n-1+i] = ini[i]; for(int i = n-2; i >= 0; i--) dat[i] = max(dat[2*i+1], dat[2*i+2]), dat2[i] = min(dat2[2*i+1], dat[2*i+2]); } // focus on k-th node, who controls [l, r) ll query(int a, int b, ll x, int k = 0, int l = 0, int r = -1){ if(r < 0) r = n; if(r <= a || b <= l) return 0; if(a <= l && r <= b){ if(dat[k] <= x) return 0; if(dat2[k] >= x){ return f(l, r-1)-(r-1-l+1)*x; } } ll lx = query(a, b, x, 2*k+1, l, (l+r)/2); ll rx = query(a, b, x, 2*k+2, (l+r)/2, r); return lx+rx; } }; // 1 3 1 3 1 3...に対して2を投げられたとき死ぬ int main(){ int q; cin >> n >> q; vector<int> a(n); for(int i = 0; i < n; i++) cin >> a[i]; STmax seg(a); sum.resize(n); sum[0] = a[0]; for(int i = 1; i < n; i++) sum[i] = sum[i-1]+a[i]; while(q-- > 0){ int a, l, r, x; cin >> a >> l >> r >> x; l--, r--; cout << seg.query(l, r+1, x) << endl; } return 0; }