QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#306820#7904. Rainbow SubarrayicesmokeTL 753ms36500kbC++142.4kb2024-01-17 12:10:582024-06-09 00:01:38

Judging History

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

  • [2024-06-09 00:01:38]
  • 自动重测本题所有获得100分的提交记录
  • 测评结果:TL
  • 用时:753ms
  • 内存:36500kb
  • [2024-06-09 00:00:26]
  • hack成功,自动添加数据
  • (/hack/652)
  • [2024-01-17 12:10:58]
  • 评测
  • 测评结果:100
  • 用时:1655ms
  • 内存:116332kb
  • [2024-01-17 12:10:58]
  • 提交

answer

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

#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
const int RANDOM = chrono::high_resolution_clock::now().time_since_epoch().count();
struct chash{
    int operator()(int x) const { return x ^ RANDOM; }
};
typedef gp_hash_table<int, int, chash> hash_t;

typedef long long ll;

#define int long long


const int N = 5e5+5;

int n,k;
int a[N];

struct node{
	int l,r,val;
}tri[4*N],tr2[4*N];

void pushup(int u,node tr[])
{
	tr[u].val = tr[u<<1].val + tr[u<<1|1].val;
}

void build(int u,int l,int r,node tr[])
{
	tr[u] = {l,r,0};
	if(l==r) return;
	int mid = (l+r)>>1;
	build(u<<1,l,mid,tr);
	build(u<<1|1,mid+1,r,tr);
}

int query(int u,int l,int r,node tr[])
{
	if(l<=tr[u].l && tr[u].r<=r) return tr[u].val;
	int res = 0;
	int mid = (tr[u].l + tr[u].r)>>1;
	if(l<=mid) res += query(u<<1,l,r,tr);
	if(r>mid) res += query(u<<1|1,l,r,tr);
	return res;
}

void modify(int u,int p,int x,node tr[])
{
	if(tr[u].l==tr[u].r){
		tr[u].val += x;
		return;
	}
	int res = 0;
	int mid = (tr[u].l + tr[u].r)>>1;
	if(p<=mid) modify(u<<1,p,x,tr);
	if(p>mid) modify(u<<1|1,p,x,tr);
	pushup(u,tr);
}

int ask(auto &ge)
{
	int l = 1,r = n;
	int L = query(1,1,n,tri);
	// cout<<L<<' ';
	while(l<r){
		int mid = (l+r)>>1;
		if(query(1,1,mid,tri)<(L+1)/2) l=mid+1;
		else r=mid;
	}
	int s1 = query(1,1,r,tr2);
	if(query(1,1,r,tri)>(L+1)/2){
		s1 -= (query(1,1,r,tri) - (L+1)/2) * ge[r];	
	} 
	int s2 = query(1,1,n,tr2) - s1;
	int res = (L+1)/2 * ge[r] - s1 + s2 - L/2 * ge[r];
	
	return res; 
}


void solve()
{
	cin>>n>>k;
	for(int i=1;i<=n;i++){
		cin>>a[i];
		a[i] -= i;
	}
	
	int idx = 0;
	set<int>tmp;
	hash_t to,ge;
	// unordered_map<int,int>to,ge;
	for(int i=1;i<=n;i++){
		tmp.insert(a[i]);
	}
	for(int i:tmp){
		to[i] = ++idx;
		ge[idx] = i;
	}
	int ni = n;
	n = idx;
	build(1,1,n,tri),build(1,1,n,tr2);
	int ans = 0;
	for(int i=1,j=1;i<=ni;i++){
		if(i!=1){
			modify(1,to[a[i-1]],-1,tri);
			modify(1,to[a[i-1]],-a[i-1],tr2);
		}
		while(j<=ni){
			modify(1,to[a[j]],1,tri);
			modify(1,to[a[j]],a[j],tr2);
			if(ask(ge)<=k) j++;
			else{
				modify(1,to[a[j]],-1,tri);
				modify(1,to[a[j]],-a[j],tr2);
				break;
			}
		}
		ans = max(ans,j-i);
	}
	cout<<ans<<'\n';
}

signed main()
{
	ios::sync_with_stdio(0);
	cin.tie(0),cout.tie(0);

	
	int T;
	cin>>T;
	while(T--){
		solve();
	}
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 753ms
memory: 36500kb

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:

172998

result: