QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#109665#5378. 匹配问题vme500 200ms29880kbC++17912b2023-05-30 08:56:212023-05-30 08:56:23

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:56:23]
  • 评测
  • 测评结果:0
  • 用时:200ms
  • 内存:29880kb
  • [2023-05-30 08:56:21]
  • 提交

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);
	}z.insert(0);
	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: 4
Accepted
time: 1ms
memory: 17308kb

input:

2 2 1
1 1
1 1

output:

2

result:

ok single line: '2'

Test #2:

score: -4
Wrong Answer
time: 10ms
memory: 17276kb

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:

6

result:

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

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: 200ms
memory: 29880kb

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%