QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#91786 | #6136. Airdrop | zhouhuanyi | AC ✓ | 225ms | 13788kb | C++23 | 2.2kb | 2023-03-29 16:06:32 | 2023-03-29 16:06:40 |
Judging History
answer
#include<iostream>
#include<cstdio>
#include<algorithm>
#define N 300000
#define inf 1e9
using namespace std;
int read()
{
char c=0;
int sum=0;
while (c<'0'||c>'9') c=getchar();
while ('0'<=c&&c<='9') sum=sum*10+c-'0',c=getchar();
return sum;
}
struct reads
{
int x,y;
bool operator < (const reads &t)const
{
return x<t.x;
}
};
reads st[N+1];
int T,n,y0,minn,maxn,tong[N+1],cnt[N+1],cnt2[N+1],cnt3[N+1],lst[N+1],lst2[N+1],F[N+1],G[N+1],length;
bool used[N+1];
int main()
{
int ps,ps2,res;
T=read();
for (int i=1;i<=N;++i) lst2[i]=100001;
while (T--)
{
n=read(),y0=read(),minn=inf,maxn=length=ps=res=0,ps2=1,tong[++length]=0;
for (int i=1;i<=n;++i) st[i].x=read(),st[i].y=read(),cnt[st[i].x]++,tong[++length]=st[i].x,tong[++length]=st[i].x+1;
sort(st+1,st+n+1),sort(tong+1,tong+length+1),length=unique(tong+1,tong+length+1)-tong-1;
for (int i=1;i<=length;++i)
{
while (ps+1<=n&&st[ps+1].x<tong[i])
{
++ps;
if (lst[abs(st[ps].y-y0)+100000-st[ps].x]==st[ps].x)
{
if (cnt2[abs(st[ps].y-y0)+100000-st[ps].x]&1) res--;
cnt2[abs(st[ps].y-y0)+100000-st[ps].x]=0;
}
else
{
cnt2[abs(st[ps].y-y0)+100000-st[ps].x]++,lst[abs(st[ps].y-y0)+100000-st[ps].x]=st[ps].x;
if (cnt2[abs(st[ps].y-y0)+100000-st[ps].x]&1) res++;
else res--;
}
}
F[i]=res;
}
ps2=n+1,res=0;
for (int i=length;i>=1;--i)
{
while (ps2-1>=1&&st[ps2-1].x>tong[i])
{
--ps2;
if (lst2[abs(st[ps2].y-y0)+st[ps2].x]==st[ps2].x)
{
if (cnt3[abs(st[ps2].y-y0)+st[ps2].x]&1) res--;
cnt3[abs(st[ps2].y-y0)+st[ps2].x]=0;
}
else
{
cnt3[abs(st[ps2].y-y0)+st[ps2].x]++,lst2[abs(st[ps2].y-y0)+st[ps2].x]=st[ps2].x;
if (cnt3[abs(st[ps2].y-y0)+st[ps2].x]&1) res++;
else res--;
}
}
G[i]=res;
}
for (int i=1;i<=length;++i) minn=min(minn,F[i]+G[i]+cnt[tong[i]]),maxn=max(maxn,F[i]+G[i]+cnt[tong[i]]);
for (int i=1;i<=n;++i) cnt[st[i].x]=cnt2[abs(st[i].y-y0)+100000-st[i].x]=lst[abs(st[i].y-y0)+100000-st[i].x]=cnt3[abs(st[i].y-y0)+st[i].x]=lst2[abs(st[i].y-y0)+st[i].x]=0;
printf("%d %d\n",minn,maxn);
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 13788kb
input:
3 3 2 1 2 2 1 3 5 3 3 2 1 2 5 4 3 2 3 1 3 4 3
output:
1 3 0 3 2 2
result:
ok 6 numbers
Test #2:
score: 0
Accepted
time: 225ms
memory: 12032kb
input:
3508 6 1 7 1 1 1 9 1 10 1 3 1 4 1 3 8 8 9 8 7 1 8 9 5 10 1 10 8 10 2 5 1 9 9 5 9 10 9 6 4 4 7 6 7 10 5 3 8 9 5 9 9 7 5 4 7 10 5 6 9 9 5 6 6 9 3 3 2 5 1 3 8 6 4 5 9 10 2 2 9 10 10 10 8 4 1 7 1 6 1 3 1 5 1 2 4 9 3 3 3 4 5 3 8 9 6 9 9 6 3 9 5 9 3 2 9 9 1 9 2 4 1 5 4 5 6 6 5 9 8 4 1 2 1 5 1 7 1 3 1 9 10...
output:
6 6 1 3 1 5 2 6 2 6 0 2 4 4 2 2 4 4 4 7 4 4 9 9 4 6 0 3 2 6 2 2 2 6 10 10 9 9 1 3 2 4 0 2 2 4 4 7 6 6 9 9 2 2 2 2 3 5 1 4 2 2 1 1 3 5 4 7 3 6 1 1 5 7 5 5 1 3 2 2 1 7 1 1 4 6 2 4 2 6 2 4 1 7 2 4 9 9 0 3 1 1 3 8 2 2 2 2 9 9 3 7 4 4 4 6 2 5 0 2 2 5 3 3 0 4 4 4 2 4 2 2 4 6 6 6 6 6 0 2 2 6 2 4 2 6 2 5 1 ...
result:
ok 7016 numbers