105812024-04-05 22:52:47999Branch Cuttingcpp17Wrong answer 15/100949ms12568 KiB
// Source: https://usaco.guide/general/io

#include <bits/stdc++.h>
using namespace std;
	#define endl ' '

int n;

bool check(int x, int l, int r) {
    // Check if x lies within the CIRCULAR interval [l, r]
    if (r >= l)
        return x >= l && x <= r;
    else
        return x >= l || x <= r;
}

int getS(int l, int r) {
    // Normalize l and r to be within the range of the array
    l = (l + n) % n;
    r = (r + n) % n;

    // Calculate the size of the circular interval [l, r]
    if (r >= l)
        return r - l + 1;
    else
        return n - l + r + 1;
}

int cir(int x){
	if(x>=0)return x%n;
	else return x+n;
}

map<int,int> s;
int ans;

void ansu(int l,int r){
	ans+=getS(l,r)/2;
	s[l]=r;
}

void alga(int X){
	auto it=s.upper_bound(X);
	if(it==s.begin()){
		it=s.end();
	}
	it--;
	int l=(*it).first,r=(*it).second;
	if(check(X,l,r)){
		s.erase(l);
		ans-=getS(l,r)/2;
		if(getS(l,r)!=2){
			if(l==X){
				ansu(cir(l+1),r);
			}
			else if(r==X){
				ansu(l,cir(r-1));
			}
			else{
				ansu(l,cir(X-1));
				ansu(cir(X+1),r);
			}
		}
	}
}

void belga(int X, int mode){
	if(s.empty()){
		if(mode==1)ansu(X,cir(X+1));
		if(mode==2)ansu(cir(X-1),X);
		if(mode==3)ansu(cir(X-1),cir(X+1));
		return;
	}
	auto it=s.upper_bound(X);
	if(mode==1){
		if(it==s.end())it=s.begin();
		int l=(*it).first,r=(*it).second;
		if(cir(X+1)==l){
			ans-=getS(l,r)/2;
			s.erase(it);
			ansu(X,r);
		}
		else{
			ansu(X,cir(X+1));
		}
	}
	if(mode==2){
		if(it==s.begin())it=s.end();
		it--;
		int l=(*it).first,r=(*it).second;
		if(cir(X-1)==r){
			ans-=getS(l,r)/2;
			s.erase(it);
			ansu(l,X);
		}
		else{
			ansu(cir(X-1),X);
		}
	}
	if(mode==3){
		if(it==s.end())it=s.begin();
		auto itt=it;
		if(it==s.begin())it=s.end();
		it--;
		int l2=(*itt).first,r2=(*itt).second;
		int l=(*it).first,r=(*it).second;
		if(cir(X-1)==r&&cir(X+1)==l2){
			ans-=getS(l,r)/2;
			ans-=getS(l2,r2)/2;
			s.erase(it);
			s.erase(itt);
			ansu(l,r2);
		}
		else if(cir(X-1)==r){
			ans-=getS(l,r)/2;
			s.erase(it);
			ansu(l,cir(X+1));
		}
		else if(cir(X+1)==l2){
			ans-=getS(l2,r2)/2;
			s.erase(itt);
			ansu(cir(X-1),r2);
		}
		else ansu(cir(X-1),cir(X+1));
	}
}

int main() {
	int q;cin>>n>>q;
	vector<int> v(n);
	for(int i = 0;i<n;i++){
		cin>>v[i];
	}
	for(int i = 0;i<n;i++){
		if(v[i]<v[cir(i+1)]){
			belga(cir(i+1),2);
		}
	}
	cout<<ans<<endl;
	for(int i = 0;i<q;i++){
		int a,b;cin>>a>>b;
		alga(a);
		v[a]=b;
		if(v[a]<v[cir(a+1)]&&v[a]>v[cir(a-1)])belga(a,3);
		else if(v[a]<v[cir(a+1)]) belga(a,1);
		else if(v[a]>v[cir(a-1)]) belga(a,2);
	cout<<ans<<endl;
	}
}
SubtaskSumTestVerdictTimeMemory
subtask10/0
1Accepted3ms1812 KiB
2Accepted3ms2004 KiB
subtask20/8
3Wrong answer3ms2216 KiB
4Accepted2ms2304 KiB
5Wrong answer3ms2428 KiB
6Wrong answer3ms2512 KiB
7Wrong answer3ms2756 KiB
8Wrong answer3ms2884 KiB
9Wrong answer3ms2936 KiB
10Wrong answer3ms2932 KiB
11Wrong answer3ms3184 KiB
subtask315/15
12Accepted569ms8296 KiB
13Accepted523ms7740 KiB
14Accepted654ms7200 KiB
15Accepted588ms9032 KiB
16Accepted657ms9596 KiB
17Accepted532ms5292 KiB
18Accepted521ms5340 KiB
subtask40/10
19Wrong answer3ms3916 KiB
20Accepted3ms4156 KiB
21Wrong answer6ms4188 KiB
22Wrong answer6ms4156 KiB
23Wrong answer6ms4156 KiB
24Wrong answer6ms4140 KiB
25Wrong answer7ms4148 KiB
26Wrong answer6ms4156 KiB
subtask50/25
27Wrong answer7ms4232 KiB
28Accepted4ms4272 KiB
29Wrong answer34ms4308 KiB
30Wrong answer34ms4352 KiB
31Wrong answer29ms4500 KiB
32Wrong answer34ms4276 KiB
33Wrong answer35ms4360 KiB
34Wrong answer35ms4620 KiB
subtask60/42
35Wrong answer116ms5588 KiB
36Accepted39ms5592 KiB
37Wrong answer949ms10500 KiB
38Wrong answer847ms8280 KiB
39Wrong answer874ms10396 KiB
40Wrong answer763ms5980 KiB
41Wrong answer739ms5916 KiB
42Wrong answer735ms5872 KiB
43Wrong answer851ms12568 KiB