QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#650483#5069. VacationQOJ114514ancestorWA 1359ms205268kbC++144.2kb2024-10-18 15:21:052024-10-18 15:21:10

Judging History

你现在查看的是最新测评结果

  • [2024-10-18 15:21:10]
  • 评测
  • 测评结果:WA
  • 用时:1359ms
  • 内存:205268kb
  • [2024-10-18 15:21:05]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
#define INF 114514114514114514ll
#define N 400005
#define ls (x<<1)
#define rs (ls|1)
#define mid ((l+r)>>1)
using namespace std;
int n,m,c,a[N];
namespace s1{
	struct I{
		int s,lx,rx,mx;
		I(int _s=0,int _lx=0,int _rx=0,int _mx=0){
			s=_s,lx=_lx,rx=_rx,mx=_mx;
		}
	}I0;
	I operator+(const I L,const I R){
		return I( 
			L.s+R.s,
			max(L.lx,L.s+R.lx),
			max(R.rx,R.s+L.rx),
			max({L.mx,R.mx,L.rx+R.lx})
		);
	}
	struct S{int l,r;I f;}tr[N<<2];
	void pu(int x){
		tr[x].f=tr[ls].f+tr[rs].f;
	}
	void bd(int x,int l,int r){
		tr[x]=(S){l,r,I0}; 
		if(l==r)return;
		bd(ls,l,mid);
		bd(rs,mid+1,r);
		pu(x);
	}
	void ud(int x,int p,int v){
		if(tr[x].l==tr[x].r){
			tr[x]=(S){p,p,I(v,v,v,v)};
			return;
		}
		if(p<=tr[ls].r)ud(ls,p,v);
		else ud(rs,p,v); 
		pu(x);
	}
	I qr(int x,int l,int r){
		if(l<=tr[x].l&&tr[x].r<=r)return tr[x].f;
		if(r<tr[rs].l)return qr(ls,l,r);
		if(l>tr[ls].r)return qr(rs,l,r);
		return qr(ls,l,r)+qr(rs,l,r);
	}
	void upd(int p,int v){ud(1,p,max(v,0ll));}
	int qry(int l,int r){return qr(1,l,r).mx;}
}
namespace s2{
	struct I{
		int ax,bx,mx;
		I(int _ax=0,int _bx=0,int _mx=0){
			ax=_ax,bx=_bx,mx=_mx;
		}
	}I0(0,0,-INF);
	I operator+(const I L,const I R){
		return I(
			max(L.ax,R.ax),
			max(R.bx,L.bx),
			max({L.mx,R.mx,L.bx+R.ax})
		);
	}
	struct T{
		int at,bt;
		T(int _at=0,int _bt=0){
			at=_at,bt=_bt;
		}
	}T0;
	T operator+(const T L,const T R){
		return T(
			L.at+R.at,
			L.bt+R.bt
		);
	}
	I operator+(const I L,const T R){
		return I(
			L.ax+R.at,
			L.bx+R.bt,
			L.mx+R.at+R.bt
		);
	}
	struct S{int l,r;I f;T t;}tr[N<<2];
	void pu(int x){
		tr[x].f=tr[ls].f+tr[rs].f;
	}
	void pt(int x,T t){
		tr[x].f=tr[x].f+t;
		tr[x].t=tr[x].t+t;
	}
	void pd(int x){
		if(tr[x].t.at||tr[x].t.bt){
			pt(ls,tr[x].t),pt(rs,tr[x].t);
			tr[x].t=T0;
		}
	}
	void bd(int x,int l,int r){
		tr[x]=(S){l,r,I0,T0};
		if(l==r)return;
		bd(ls,l,mid);
		bd(rs,mid+1,r);
		pu(x);
	}
	void ud(int x,int l,int r,T t){
		if(l<=tr[x].l&&tr[x].r<=r){
			return pt(x,t);
		}
		pd(x);
		if(l<=tr[ls].r)ud(ls,l,r,t);
		if(tr[rs].l<=r)ud(rs,l,r,t);
		pu(x);
	}
	I qr(int x,int l,int r){
		if(l<=tr[x].l&&tr[x].r<=r)return tr[x].f;
		pd(x);
		if(r<tr[rs].l)return qr(ls,l,r);
		if(l>tr[ls].r)return qr(rs,l,r);
		return qr(ls,l,r)+qr(rs,l,r);
	}
	void upd(int p,int v){
		if(p+c<=n){
			int q=(p-1)/c*c+1;
			ud(1,q,p,T(v,0));
		}
		if(p-c>=1){
			int q=((p-1)/c+1)*c;
			ud(1,p-c,q,T(0,v));
		}
	}
	int qry(int l,int r){return qr(1,l,r).mx;}
}
namespace s3{
	struct I{
		int mx;
		I(int _mx=0){
			mx=_mx;
		}
	}I0;
	I operator+(const I L,const I R){
		return I(
			max(L.mx,R.mx)
		);
	}
	struct S{int l,r;I f;}tr[N<<2];
	void pu(int x){
		tr[x].f=tr[ls].f+tr[rs].f;
	}
	void bd(int x,int l,int r){
		tr[x]=(S){l,r,I0}; 
		if(l==r)return;
		bd(ls,l,mid);
		bd(rs,mid+1,r);
		pu(x);
	}
	void ud(int x,int p,int v){
		if(tr[x].l==tr[x].r){
			tr[x]=(S){p,p,I(v)};
			return;
		}
		if(p<=tr[ls].r)ud(ls,p,v);
		else ud(rs,p,v);
		pu(x);
	}
	I qr(int x,int l,int r){
		if(l<=tr[x].l&&tr[x].r<=r)return tr[x].f;
		if(r<tr[rs].l)return qr(ls,l,r);
		if(l>tr[ls].r)return qr(rs,l,r);
		return qr(ls,l,r)+qr(rs,l,r);
	}
	void upd(int p,int v){ud(1,p,v);}
	int qry(int l,int r){return qr(1,l,r).mx;}
}
void init(){
	s1::bd(1,1,n);
	s2::bd(1,1,n-c);
	s3::bd(1,1,n/c-1);
}
void update(int p,int v){
	s1::upd(p,v);
	s2::upd(p,v-a[p]);
	int bp=(p-1)/c+1;
	s3::upd(bp,
	max(s1::qry((bp-1)*c+1,bp*c),
		s2::qry((bp-1)*c+1,bp*c)));
	a[p]=v;
}
int query(int l,int r){
	int bl=(l-1)/c+1,br=(r-1)/c+1;
	if(r-l+1<=c)return s1::qry(l,r);
	int ans=max({
		s1::qry(l,l+c-1),
		s1::qry(r-c+1,r),
		s2::qry(l,bl*c),
		s2::qry(r-c,br*c-c)});
	if(bl+1<br-1)ans=max(ans,s3::qry(bl+1,br-2));
	if(bl+1<=br-1)ans=max(ans,s1::qry((br-2)*c+1,(br-1)*c));
	return ans;
}
signed main(){
	cin.tie(0)->sync_with_stdio(0);
	cin>>n>>m>>c;int nn=n;n=(n+2*c-1)/c*c;
	init();
	for(int i=1,x;i<=nn;i++)cin>>x,update(i,x);
	for(int i=1,op,x,y;i<=m;i++){
		cin>>op>>x>>y;
			if(c==5)cout<<x<<' '<<y<<'\n';
		if(op==1)update(x,y);
		else{
			cout<<query(x,y)<<'\n';
		}
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 3ms
memory: 204940kb

input:

5 6 3
0 -5 -3 8 -3
2 3 5
1 2 5
2 1 5
1 4 -3
2 3 5
2 1 5

output:

8
10
0
5

result:

ok 4 number(s): "8 10 0 5"

Test #2:

score: 0
Accepted
time: 1359ms
memory: 205268kb

input:

200000 500000 1
387060158 961744470 37167782 737122872 -532977662 1604246 -30977399 871848791 444997246 454204578 -813187501 -660394286 448014171 -835115276 -631880452 887715308 258530352 805589560 -414653327 -156732249 -335096199 -80266237 367896009 738406627 -903652056 446120866 415658444 -1347916...

output:

999902477
999981999
999343404
999847372
999957587
998160312
999981999
999981999
999981999
999980061
999981999
999981999
999981999
999876122
999981999
999996602
999981999
999981999
999981999
999723649
999981999
999957587
999896087
999981999
999981999
999981999
999981999
999981999
999957587
999981999
...

result:

ok 250051 numbers

Test #3:

score: -100
Wrong Answer
time: 1333ms
memory: 205244kb

input:

200000 500000 5
802774074 383481934 -295470374 285359286 751657057 197444479 626916547 -828168464 288373833 -493446966 -208422769 956745384 919286225 959643271 -176531848 -380256966 357111771 -50890039 -637284768 -337010918 259019684 752475630 -259898780 98620995 -704832505 -532710796 -971600790 -84...

output:

101420 172143
8263603330
152127 163674
8263603330
12590 104691
7788336289
175285 641954468
106642 759892684
134049 134531
4665220191
109018 180752
8263603330
136943 71835364
20155 182086
8263603330
1986 748652013
42589 97491
7788336289
63888 433915558
21144 136503
7835134597
187299 146221050
49879 1...

result:

wrong answer 1st numbers differ - expected: '4544135313', found: '101420'