QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#298589#7904. Rainbow Subarrayucup-team918#TL 1238ms10240kbC++202.5kb2024-01-06 13:21:012024-01-06 13:21:02

Judging History

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

  • [2024-06-09 00:00:26]
  • hack成功,自动添加数据
  • (/hack/652)
  • [2024-01-06 13:21:02]
  • 评测
  • 测评结果:TL
  • 用时:1238ms
  • 内存:10240kb
  • [2024-01-06 13:21:01]
  • 提交

answer

//#pragma GCC optimize(2)
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define ll long long
#define N 500005
#define mod 998244353
#define pii pair<int,int>
#define mp make_pair
#define pb push_back
#define ls (rt<<1)
#define rs ((rt<<1)|1)
#define fi first
#define se second
#define INF 1e9
#define rep(i,l,r) for(int i=(l);i<=(r);i++)
int qpow(int a,int b){
	int res=1;
	for(;b;b>>=1){
		if(b&1) res=res*a%mod;
		a=a*a%mod;
	}
	return res;
}
/*int fac[N],ifac[N];
int C(int n,int m){
	if(m>n||m<0||n<0) return 0;
	return fac[n]*ifac[n-m]%mod*ifac[m]%mod;
}
void init(){
	fac[0]=1;
	for(int i=1;i<N;i++) fac[i]=fac[i-1]*i%mod;
	ifac[N-1]=qpow(fac[N-1],mod-2);
	for(int i=N-2;i>=0;i--) ifac[i]=ifac[i+1]*(i+1)%mod;
}*/
inline int lowbit(int x){return x&(-x);}
inline int read(){
  int x=0,t=1;char ch=getchar();
  while(ch<'0'||ch>'9'){
    if(ch=='-') t=-1;
    ch=getchar();
  }
    while(ch>='0'&&ch<='9'){
        x=(x<<1)+(x<<3)+(ch-'0');
        ch=getchar();
    }
    return x*t;
}
inline void write(int x){
	if(x<0) putchar('-'),x=-x;
	if(x>=10) write(x/10);
	putchar(x%10+'0');
}
int T,n,a[N],K,b[N],sum1,sum2,tmp,pre;
multiset<int>s1;
multiset<int>s2;
int getval(){
	int pos=(*prev(s1.end()));
	int res=pre*pos-sum1+sum2-(tmp-pre)*pos;
	return res;
}
int check(int lim){
	s1.clear();s2.clear();tmp=lim;
	pre=(lim+1)/2;sum1=0,sum2=0;
	for(int i=1;i<=lim;i++)
		b[i]=a[i];
	sort(b+1,b+lim+1);int ans=INF*INF;
	for(int i=1;i<=pre;i++) sum1+=b[i],s1.insert(b[i]);
	for(int i=pre+1;i<=lim;i++) sum2+=b[i],s2.insert(b[i]);
	ans=min(ans,getval());
	for(int i=lim+1;i<=n;i++){
		int x=a[i-lim];
		auto it=s1.find(x);
		if(it!=s1.end()){
			s1.erase(it);sum1-=x;
			int t=(*s2.begin());sum2-=t;
			s2.erase(s2.begin());sum1+=t;s1.insert(t);
		}else{
			it=s2.find(x);
			s2.erase(it);sum2-=x;
		}
		int tmp=(*prev(s1.end()));
		if(a[i]>=tmp) s2.insert(a[i]),sum2+=a[i];
		else{
			s1.erase(prev(s1.end()));sum1-=tmp;
			s2.insert(tmp);s1.insert(a[i]);sum1+=a[i];sum2+=tmp;
		}
		/*
		cout<<getval()<<endl;
		for(auto t:s1) cout<<t<<" ";
		cout<<endl;
		for(auto t:s2) cout<<t<<" ";
		cout<<endl;*/
		ans=min(ans,getval());
	}
	if(ans<=K) return 1;
	return 0;
}
signed main(){
	ios::sync_with_stdio(false);
	cin.tie(0);cout.tie(0);
	cin>>T;
	while(T--){
		//0 2 1 -1
		cin>>n>>K;
		for(int i=1;i<=n;i++) cin>>a[i],a[i]-=i;
		int l=2,r=n,ans=1;
		while(l<=r){
			int mid=(l+r)>>1;
			if(check(mid)) ans=mid,l=mid+1;
			else r=mid-1;
		}
		cout<<ans<<endl;
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 5492kb

input:

5
7 5
7 2 5 5 4 11 7
6 0
100 3 4 5 99 100
5 6
1 1 1 1 1
5 50
100 200 300 400 500
1 100
3

output:

4
3
5
1
1

result:

ok 5 lines

Test #2:

score: 0
Accepted
time: 1238ms
memory: 10240kb

input:

11102
2 167959139
336470888 134074578
5 642802746
273386884 79721198 396628655 3722503 471207868
6 202647942
268792718 46761498 443917727 16843338 125908043 191952768
2 717268783
150414369 193319712
6 519096230
356168102 262263554 174936674 407246545 274667941 279198849
9 527268921
421436316 3613460...

output:

1
4
3
2
6
5
7
2
4
1
4
1
1
3
2
2
7
8
7
7
1
7
6
2
4
3
1
6
7
7
3
4
3
9
3
8
6
6
3
1
6
3
1
2
4
6
4
6
4
1
4
7
1
6
3
5
6
6
1
7
5
3
1
6
4
5
3
2
2
6
2
3
10
1
4
3
2
4
5
1
7
5
5
5
8
5
3
6
3
5
5
8
5
4
5
2
1
5
2
3
3
4
8
1
3
1
2
2
8
3
1
6
8
1
8
4
5
6
6
8
4
8
3
2
8
4
5
6
2
6
2
4
1
5
4
5
3
2
4
1
2
1
4
5
8
3
7
3
3
3...

result:

ok 11102 lines

Test #3:

score: -100
Time Limit Exceeded

input:

1
500000 17244641009859
54748096 75475634 204928248 276927808 84875072 103158867 27937890 322595515 186026685 45468307 69240390 139887597 188586447 373764525 121365644 310156469 185188306 60350786 211308832 384695957 370562147 208427221 35937909 267590963 126478310 275357775 55361535 335993561 36696...

output:


result: