QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#109663#5378. 匹配问题vme500 206ms29968kbC++17900b2023-05-30 08:52:392023-05-30 08:52:42

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:52:42]
  • 评测
  • 测评结果:0
  • 用时:206ms
  • 内存:29968kb
  • [2023-05-30 08:52:39]
  • 提交

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);
	}
	for(int i=1,t=0,l,r;i<=n;++i)
	{
		z.insert(i);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
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 4ms
memory: 17476kb

input:

2 2 1
1 1
1 1

output:

1

result:

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

Subtask #2:

score: 0
Skipped

Dependency #1:

0%

Subtask #3:

score: 0
Skipped

Dependency #2:

0%

Subtask #4:

score: 0
Wrong Answer

Test #100:

score: 0
Wrong Answer
time: 206ms
memory: 29968kb

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:

412983

result:

wrong answer 1st lines differ - expected: '312193', found: '412983'

Subtask #5:

score: 0
Skipped

Dependency #1:

0%