結果
問題 | No.877 Range ReLU Query |
ユーザー | mortal |
提出日時 | 2021-08-03 03:05:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,882 bytes |
コンパイル時間 | 1,695 ms |
コンパイル使用メモリ | 170,760 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-16 14:49:55 |
合計ジャッジ時間 | 4,745 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 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 ll long long int #define pb push_back #define fi first #define se second #define all(x) x.begin(),x.end() #define fast ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); using namespace std; //note x>0 struct node { ll val; int pos; int l; int r; }; bool comp(node a,node b) { if(a.val==b.val) { return a.l>b.l; } else { return a.val<b.val; } } const int N=100005; ll bit[N]; int n; void upd(int x,ll val){ while(x<=n) { bit[x]+=val; x+=(x & (-x)); } } ll pref(ll x) { ll ans=0; while(x>0){ ans=ans+bit[x]; x-=(x & (-x)); } return ans; } ll rsum(int l,int r) { return pref(r)-pref(l-1); } ll bit1[N]; void upd1(int x,ll val){ while(x<=n) { bit1[x]+=val; x+=(x & (-x)); } } ll pref1(ll x) { ll ans=0; while(x>0){ ans=ans+bit1[x]; x-=(x & (-x)); } return ans; } ll rsum1(int l,int r) { return pref1(r)-pref1(l-1); } int main() { fast; int i,j,q; cin>>n>>q; node a[n+q]; ll p[n+1]={0}; for(i=0;i<n;i++) { ll x; cin>>x; p[i+1]=p[i]+x; a[i].val=x; a[i].pos=-1; a[i].l=0; a[i].r=i+1; } for(i=0;i<q;i++) { int t; cin>>t; ll l,r,x; cin>>l>>r>>x; a[i+n].val=x; a[i+n].pos=i; a[i+n].l=l; a[i+n].r=r; } sort(a,a+n+q,comp); int ans[q]; for(i=0;i<n+q;i++) { if(a[i].pos==-1) { upd(a[i].r,1); upd1(a[i].r,a[i].val); } else { ll x=a[i].r-a[i].l+1; x=x-rsum(a[i].l,a[i].r); ll y=p[a[i].r]-p[a[i].l-1]; y=y-rsum1(a[i].l,a[i].r); ans[a[i].pos]=y-x*a[i].val; } } for(i=0;i<q;i++) cout<<ans[i]<<"\n"; }