結果
問題 | No.1099 Range Square Sum |
ユーザー | vjudge1 |
提出日時 | 2024-11-20 09:55:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,701 bytes |
コンパイル時間 | 2,274 ms |
コンパイル使用メモリ | 202,204 KB |
実行使用メモリ | 20,628 KB |
最終ジャッジ日時 | 2024-11-20 09:55:22 |
合計ジャッジ時間 | 5,673 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 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 | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
#include<bits/stdc++.h> #define int long long using namespace std; const int N=2e5+10;//,mod=1e9+7; int n,m,a[N],tag[N<<2]; struct dat{ int sum1,sum2; dat operator+(const dat&x)const{ dat res={sum1+x.sum1,sum2+x.sum2}; return res; } }val[N<<2]; void push_down(int u,int l,int r){ if(!tag[u]) return ; int mid=(l+r)>>1; tag[u<<1]+=tag[u]; tag[u<<1|1]+=tag[u]; (val[u<<1].sum2+=tag[u]*tag[u]*(mid-l+1)+tag[u]*2*val[u<<1].sum1); (val[u<<1|1].sum2+=tag[u]*tag[u]*(r-mid)+tag[u]*2*val[u<<1|1].sum1); (val[u<<1].sum1+=tag[u]*(l-mid+1)); (val[u<<1|1].sum1+=tag[u]*(r-mid)); tag[u]=0; return ; } void build(int l,int r,int u){ if(l==r){ val[u]={a[l],a[l]*a[l]}; return ; } int mid=(l+r)>>1; build(l,mid,u<<1); build(mid+1,r,u<<1|1); val[u]=val[u<<1]+val[u<<1|1]; } void update(int ll,int rr,int l,int r,int k,int u){ if(ll<=l&&rr>=r){ tag[u]+=k; (val[u].sum2+=k*k*(r-l+1)+k*2*val[u].sum1); (val[u].sum1+=k*(r-l+1)); return ; } push_down(u,l,r); int mid=(l+r)>>1; if(ll<=mid) update(ll,rr,l,mid,k,u<<1); if(rr>mid) update(ll,rr,mid+1,r,k,u<<1|1); val[u]=val[u<<1]+val[u<<1|1]; } dat query(int ll,int rr,int l,int r,int u){ if(ll<=l&&rr>=r) return val[u]; push_down(u,l,r); int mid=(l+r)>>1; dat res={0,0}; if(ll<=mid) res=res+query(ll,rr,l,mid,u<<1); if(rr>mid) res=res+query(ll,rr,mid+1,r,u<<1|1); return res; } signed main(){ // freopen("in.in","r",stdin); // freopen("out.out","w",stdout); ios::sync_with_stdio(0); cin>>n; for(int i=1;i<=n;i++) cin>>a[i]; build(1,n,1); cin>>m; while(m--){ int op; int l,r,x; cin>>op; if(op==2){ cin>>l>>r; cout<<query(l,r,1,n,1).sum2<<'\n'; } else{ cin>>l>>r>>x; update(l,r,1,n,x,1); } } }