QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#44472#4583. Concerto de PandemiceyiigjknWA 1762ms40560kbC++142.5kb2022-08-17 20:27:452022-08-17 20:27:46

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-08-17 20:27:46]
  • 评测
  • 测评结果:WA
  • 用时:1762ms
  • 内存:40560kb
  • [2022-08-17 20:27:45]
  • 提交

answer

# include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF=1e6;
int n,m,K,lim,a[200010],b[200010],d[200010],fa[200010],nxt[20][200010],len[20][200010];
ll sum[200010];
struct Update
{
	int l,r,v;
	Update(int l=0,int r=0,int v=0):l(l),r(r),v(v){}
	bool operator<(const Update &t)const{return v<t.v;}
}upd[400010];
inline int add(int x,int y){return (x+=y)<INF?x:INF;}
inline int goleft(int x,int k){return (x-=k)>0?x:x+m;}
inline int goright(int x,int k){return (x+=k)<=m?x:x-m;}
inline ll calc(int l,int r){return l<=r?sum[r]-sum[l-1]+r-l:sum[n]-sum[l-1]+sum[r]+n-l+r;}
inline int dis(int x,int y){return x<y?y-x:m-x+y;}
int getF(int u){return u==fa[u]?u:fa[u]=getF(fa[u]);}
bool judge(ll x)
{
	int tot=0;
	for(int i=1;i<=K;i++)
	{
		int t=b[d[i]],l=0,r=m-1,mid,L,R;
		while(l<r)
		{
			mid=(l+r+1)/2;
			if(calc(a[goleft(t,mid)],d[i])<=x) l=mid;
			else r=mid-1;
		}
		L=goleft(t,l);l=0;r=m-1;
		while(l<r)
		{
			mid=(l+r+1)/2;
			if(calc(d[i],a[goright(t,mid)])<=x) l=mid;
			else r=mid-1;
		}
		R=goright(t,l);
		if(L<=R)
		{
			if(t<L || t>R) continue;
			if(L>1) upd[++tot]=Update(1,L-1,R);
			if(R<m) upd[++tot]=Update(R+1,m,R+m);
		}
		else
		{
			if(t>R && t<L) continue;
			if(L-R>=2) upd[++tot]=Update(R+1,L-1,R+m);
		}
	}
	sort(upd+1,upd+tot+1);
	iota(fa+1,fa+m+2,1);
	for(int i=1;i<=tot;i++)
	{
		int l=upd[i].l,r=upd[i].r,v=upd[i].v;
		for(int j=getF(l);j<=r;j=getF(j+1))
		{
			nxt[0][j]=(v<=m?v:v-m);
			fa[j]=j+1;
		}
	}
	for(int i=getF(1);i<=m;i=getF(i+1)) nxt[0][i]=i;
	for(int i=1;i<=m;i++)
		if(nxt[0][i]==i) len[0][i]=INF;
		else len[0][i]=dis(i,nxt[0][i]);
	int mx=0;
	for(;;mx++)
	{
		bool flag=0;
		int *_nxt=nxt[mx+1],*__nxt=nxt[mx],*_len=len[mx+1],*__len=len[mx];
		for(int i=1;i<=m;i++)
		{
			_nxt[i]=__nxt[__nxt[i]];
			_len[i]=add(__len[i],__len[__nxt[i]]);
			flag|=(_len[i]<m);
		}
		if(!flag) break;
	}
	for(int i=1;i<=m;i++)
	{
		int u=i,cur=0,cnt=1;
		for(int j=mx;j>=0 && cnt<=lim;j--)
			if(cur+len[j][u]<m)
			{
				cur+=len[j][u];
				cnt+=1<<j;
				u=nxt[j][u];
			}
		if(cnt<=lim) return 1;
	}
	return 0;
}
int main()
{
	int x,y;
	ll l=0,r=5e6,mid;
	cin>>n>>m>>K>>lim;
	for(int i=1;i<=m;i++) scanf("%d%d",&x,&y),sum[x]=y;
	m=0;
	for(int i=1;i<=n;i++)
		if(!sum[i])
			a[b[i]=++m]=i;
	for(int i=1;i<=n;i++) sum[i]+=sum[i-1];
	for(int i=1;i<=K;i++) scanf("%d",&d[i]);
	while(l<r)
	{
		mid=(l+r)/2;
		if(judge(mid)) r=mid;
		else l=mid+1;
	}
	cout<<l<<endl;
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 4ms
memory: 9252kb

input:

10 4 3 2
1 2
4 4
6 2
7 5
2 5 8

output:

4

result:

ok single line: '4'

Test #2:

score: 0
Accepted
time: 3ms
memory: 9376kb

input:

8 1 3 5
1 5
4 2 7

output:

0

result:

ok single line: '0'

Test #3:

score: 0
Accepted
time: 3ms
memory: 8548kb

input:

5 2 2 1
1 14
2 14
3 5

output:

1

result:

ok single line: '1'

Test #4:

score: 0
Accepted
time: 2ms
memory: 8464kb

input:

2 1 1 1
1 200000
2

output:

0

result:

ok single line: '0'

Test #5:

score: 0
Accepted
time: 500ms
memory: 21468kb

input:

190976 113222 55610 23475
51263 120558
10007 171596
46671 108981
117183 169457
18187 84735
149298 124718
79376 129184
28117 76880
109791 87521
114840 59510
38014 178362
41701 11344
27561 192741
173835 54534
71368 76692
122745 95537
152595 158352
43901 162441
98927 105784
22484 96000
19443 113614
370...

output:

170531

result:

ok single line: '170531'

Test #6:

score: 0
Accepted
time: 1762ms
memory: 40560kb

input:

198722 26425 169256 110599
33948 74442
51729 66300
40369 173859
42274 73043
117803 108716
149794 151005
147161 2675
148063 166634
132585 51612
141999 182365
32951 159790
120932 290
82655 150138
49337 10396
171146 129572
33311 193079
195115 171691
180568 77905
65397 110312
156436 149966
9377 55490
12...

output:

1

result:

ok single line: '1'

Test #7:

score: 0
Accepted
time: 302ms
memory: 17572kb

input:

200000 150000 50000 24998
187150 200000
81420 200000
167617 200000
100616 200000
135362 200000
156943 200000
83069 200000
48837 200000
179969 200000
138130 200000
133131 200000
196045 200000
169575 200000
163857 200000
106717 200000
191966 200000
131394 200000
145647 200000
160212 200000
75181 20000...

output:

200002

result:

ok single line: '200002'

Test #8:

score: -100
Wrong Answer
time: 308ms
memory: 15540kb

input:

200000 150000 50000 2
99352 200000
85760 200000
126279 200000
78681 200000
191980 200000
123278 200000
90780 200000
183926 200000
92668 200000
92156 200000
157074 200000
104604 200000
87593 200000
183454 200000
38009 200000
132806 200000
96071 200000
135445 200000
123768 200000
80039 200000
199215 2...

output:

5000000

result:

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