結果

問題 No.1099 Range Square Sum
ユーザー vjudge1vjudge1
提出日時 2024-11-20 10:02:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,792 bytes
コンパイル時間 2,049 ms
コンパイル使用メモリ 202,060 KB
実行使用メモリ 20,980 KB
最終ジャッジ日時 2024-11-20 10:02:38
合計ジャッジ時間 6,424 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
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 RE -
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 RE -
testcase_29 RE -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N=2e5+10,mod=1e18;
int n,m,a[N],tag[N<<2];
struct dat{
	int sum1,sum2;
	dat operator+(const dat&x)const{
		dat res={(sum1+x.sum1)%mod,(sum2+x.sum2)%mod};
		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]%mod*(mid-l+1)%mod+tag[u]*2%mod*val[u<<1].sum1%mod)%=mod;
	(val[u<<1|1].sum2+=tag[u]*tag[u]%mod*(r-mid)%mod+tag[u]*2%mod*val[u<<1|1].sum1%mod)%=mod;
	(val[u<<1].sum1+=tag[u]*(l-mid+1)%mod)%=mod;
	(val[u<<1|1].sum1+=tag[u]*(r-mid)%mod)%=mod;
	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)%mod+k*2*val[u].sum1%mod)%=mod;
		(val[u].sum1+=k*(r-l+1)%mod)%=mod;
		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--){
		char 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);
		}
	}
}
0