QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#109664#5378. 匹配问题vme500 0ms17412kbC++17904b2023-05-30 08:54:272023-05-30 08:54:30

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-05-30 08:54:30]
  • 评测
  • 测评结果:0
  • 用时:0ms
  • 内存:17412kb
  • [2023-05-30 08:54:27]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define N 500005
#define pb push_back
const int up=5e5;
int n,m1,m2,tp,a[N],b[N],s[N],w[N],st[N],dp[N];
vector<int> vc[N];set<int> z;
int main()
{
	scanf("%d %d %d",&n,&m1,&m2);
	for(int i=1;i<=n;++i) scanf("%d",&a[i]);
	for(int i=1;i<=n;++i) scanf("%d",&b[i]),++s[b[i]];
	sort(a+1,a+n+1);for(int i=1;i<=up;++i) s[i]+=s[i-1];
	for(int i=1,t,nw=-1e9;i<=n;++i)
	{
		w[i]=s[a[i]-1]-i+1;nw=max(nw,w[i]);
		t=s[min(a[i]+m1,up)]-nw;if(t<n) vc[t+1].pb(i-1);
	}
	for(int i=1,t=0,l,r;i<=n;++i)
	{
		z.insert(i-1);for(auto j:vc[i]) if(j>=t) z.erase(j);
		while(tp && w[i]>w[st[tp]]) --tp;st[++tp]=i;
		t=s[min(a[i]+m2,up)]-i;l=1;r=tp;
		while(l<=r)
		{
			int mid=(l+r)/2;
			if(t<w[st[mid]]) l=mid+1;else r=mid-1;
		}t=st[r];while(*z.begin()<t) z.erase(z.begin());
		t=*z.begin();dp[i]=t?dp[t-1]+1:0;
	}printf("%d\n",n-dp[n]);return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Time Limit Exceeded

Test #1:

score: 4
Accepted
time: 0ms
memory: 17412kb

input:

2 2 1
1 1
1 1

output:

2

result:

ok single line: '2'

Test #2:

score: -4
Time Limit Exceeded

input:

10 200000 100000
34181 300096 24293 22680 402306 193269 438170 254676 188147 73971
216849 477743 461911 135785 467234 278230 287107 223666 124173 135091

output:


result:


Subtask #2:

score: 0
Skipped

Dependency #1:

0%

Subtask #3:

score: 0
Skipped

Dependency #2:

0%

Subtask #4:

score: 0
Time Limit Exceeded

Test #100:

score: 0
Time Limit Exceeded

input:

500000 500000 10
200184 74991 71203 334998 316800 34483 120570 301054 331108 232072 189788 397143 490296 56807 361700 88818 42376 460305 371750 450351 338384 429789 426045 445029 152316 408919 188124 144966 457495 475025 225370 260510 383159 495247 54319 246245 240728 372033 439599 119720 449020 451...

output:


result:


Subtask #5:

score: 0
Skipped

Dependency #1:

0%