結果
問題 | No.877 Range ReLU Query |
ユーザー | けけ |
提出日時 | 2024-11-30 16:10:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 998 bytes |
コンパイル時間 | 2,349 ms |
コンパイル使用メモリ | 218,288 KB |
実行使用メモリ | 20,680 KB |
最終ジャッジ日時 | 2024-11-30 16:10:16 |
合計ジャッジ時間 | 6,104 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 3 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 | 2 ms
5,248 KB |
testcase_08 | AC | 3 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 <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);++i) using namespace std; using ll = long long; #include<atcoder/segtree> using namespace atcoder; using S=pair<ll,ll>; S op(S a, S b){ a.first+=b.first; a.second+=b.second; return a; } S e(){ return make_pair(0,0); } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n,q; cin>>n>>q; vector<int> a(n); rep(i,n)cin>>a[i]; vector<vector<int>> ev(n); rep(i,n) ev[i] = {a[i],i}; rep(i,q){ int t,l,r,x; cin>>t>>l>>r>>x; l--; ev.push_back({x,l,r,i}); } sort(ev.begin(),ev.end()); vector<int> ans(q); segtree<S,op,e> seg(n); rep(i,n) seg.set(i, make_pair(a[i],1)); for(auto v: ev){ if(v.size()==2){ seg.set(v[1], make_pair(0,0)); } else{ S s = seg.prod(v[1],v[2]); ans[v[3]] = s.first-s.second*v[0]; } } rep(i,q)cout<<ans[i]<<endl; }