QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#275686#7904. Rainbow SubarrayQingyuWA 377ms28796kbC++232.0kb2023-12-04 23:11:432023-12-04 23:11:44

Judging History

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

  • [2024-06-09 00:00:26]
  • hack成功,自动添加数据
  • (/hack/652)
  • [2023-12-04 23:11:44]
  • 评测
  • 测评结果:WA
  • 用时:377ms
  • 内存:28796kb
  • [2023-12-04 23:11:43]
  • 提交

answer

#include<bits/stdc++.h>
#define rep(i,a,n) for(int i=a;i<=n;i++)
#define pre(i,a,n) for(int i=n;i>=a;i--)
#define ls(x) lson[(x)]
#define rs(x) rson[(x)]
#define IOS ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
using namespace std;
using ll=long long;
#define N int(5e5+10)
int rt,a[N],lson[N<<2],rson[N<<2],sz[N<<2],cnt;
ll sum[N<<2],b[N];
int build(int cl,int cr)
{
	int n1=cnt++;
	if(cl<cr)
	{
		int mid=(cl+cr)>>1;
		ls(n1)=build(cl,mid);
		rs(n1)=build(mid+1,cr);
	}
	return n1;
}
void modify(int n1,int cl,int cr,int pos,int x)
{
	if(cl==cr)
	{
		sz[n1]+=x,sum[n1]+=1ll*x*b[cl];
		return;	
	}
	int mid=(cl+cr)>>1;
	if(pos<=mid) modify(ls(n1),cl,mid,pos,x);
	else modify(rs(n1),mid+1,cr,pos,x);
	sz[n1]=sz[ls(n1)]+sz[rs(n1)];
	sum[n1]=sum[ls(n1)]+sum[rs(n1)];
}
ll que(int n1,int cl,int cr,int ki,int tp)
{
	if(cl==cr) return (tp?(1ll*ki*b[cl]):b[cl]);
	int mid=(cl+cr)>>1;
	if(sz[ls(n1)]>=ki) return que(ls(n1),cl,mid,ki,tp);
	else return (tp?sum[ls(n1)]:0)+que(rs(n1),mid+1,cr,ki-sz[ls(n1)],tp);

}
int n,k;
void solve()
{
	cin>>n>>k;
	rep(i,1,n) cin>>a[i],a[i]-=i,b[i]=a[i];
	sort(b+1,b+n+1,[&](ll x,ll y){return x<y;});
	int tot=unique(b+1,b+n+1)-b-1;
	rep(i,1,n) a[i]=lower_bound(b+1,b+tot+1,a[i])-b;
	rt=build(1,tot);
	int ans=1,p=1;
	rep(i,1,n)
	{
		while(p<=n)
		{
			
			modify(rt,1,tot,a[p],1);
			int ki=(p-i+1)>>1;
			ll v1=que(rt,1,tot,ki,1);
			ll v2=que(rt,1,tot,p-i+1,1)-v1;
			if((p-i+1)%2==0)
			{
				if(v2-v1<=k) 
					ans=max(ans,p-i+1),p++;
				else
				{
					modify(rt,1,tot,a[p],-1);
					break;
				}
			}
			else
			{
				ll v3=que(rt,1,tot,ki+1,0);
				if(v2-v1-v3<=k)
					ans=max(ans,p-i+1),p++;
				else
				{
					modify(rt,1,tot,a[p],-1);
					break;
				}
			}
		}
		modify(rt,1,tot,a[i],-1);
		if(p>n) {ans=max(ans,n-i+1); break;}
	}
	cout<<ans<<"\n";
}
int main()
{
	IOS
	int t=1;cin>>t;
	while(t--) solve();
	return 0;
}
/*
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
*/

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 241ms
memory: 22420kb

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
Wrong Answer
time: 377ms
memory: 28796kb

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:

92681

result:

wrong answer 1st lines differ - expected: '172998', found: '92681'