QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#420231#8669. 正方形计数Hanghang15 942ms4284kbC++145.9kb2024-05-24 15:40:312024-05-24 15:40:40

Judging History

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

  • [2024-05-24 15:40:40]
  • 评测
  • 测评结果:15
  • 用时:942ms
  • 内存:4284kb
  • [2024-05-24 15:40:31]
  • 提交

answer

#pragma GCC optimize("Ofast")
#include<bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
#define il inline
#define cn const 
typedef double db;
const db eps=1e-8,V=2003;
il int dcmp(cn db &x){return x>eps?1:x<-eps?-1:0;}
struct Point
{
    db x,y;
    void In(){cin>>x>>y;}
    void Out(){cout<<x<<" "<<y<<endl;}
};
il bool operator ==(Point A,Point B){return !dcmp(A.x-B.x)&&!dcmp(A.y-B.y);}
typedef Point Vec;
il Vec operator +(cn Vec &A,cn Vec &B){return {A.x+B.x,A.y+B.y};}
il Vec operator -(cn Vec &A,cn Vec &B){return {A.x-B.x,A.y-B.y};}
il Vec operator *(cn Vec &A,cn db &d){return {A.x*d,A.y*d};}
il db Cro(cn Vec &A,cn Vec &B){return A.x*B.y-A.y*B.x;}
il db Dot(cn Vec &A,cn Vec &B){return A.x*B.x+A.y*B.y;}
il Point Cross_LL(cn Point &a,cn Point &b,cn Point &c,cn Point &d)
{
    Vec x=b-a,y=d-c,z=a-c;
    return a+x*(Cro(y,z)/Cro(x,y));
}
il bool Pan(cn Point &a,cn Point &b,cn Point &c,cn Point &d)
{
    return dcmp(Cro(b-a,c-a))*dcmp(Cro(b-a,d-a))<0&&dcmp(Cro(d-c,a-c))*dcmp(Cro(d-c,b-c))<0;
}
il bool On(cn Point &p,cn Point &a,cn Point &b){return a.x<=p.x&&p.x<=b.x&&a.y<=p.y&&p.y<=b.y;}
il db Atan(Vec a){return atan2(a.y,a.x);}
struct Line
{
    Point a,b;db arg;
    il void Init(cn Point &_a,cn Point &_b){a=_a;b=_b;arg=Atan(b-a);}
    il void Init(db _a,db _b,db _c,db _d){a={_a,_b};b={_c,_d};arg=Atan(b-a);}
    void Out(){cout<<a.x<<" "<<a.y<<" "<<b.x<<" "<<b.y<<endl;}
};
il bool operator ==(cn Line &A,cn Line &B){return A.a==B.a&&A.b==B.b;}
il Point Cross(cn Line &L1,cn Line &L2){return Cross_LL(L1.a,L1.b,L2.a,L2.b);}
il bool Chk(cn Line &L,cn Point &a){return dcmp(Cro(a-L.a,L.b-L.a))>0;}
il bool Cmp(cn Line &L1,cn Line &L2)
{
	if(dcmp(L1.arg-L2.arg)!=0)return L1.arg<L2.arg;
	return dcmp(Cro(L2.a-L1.a,L1.b-L1.a))>0;
}
il int Halfcut(Line *L,int n)
{
	sort(L+1,L+n+1,Cmp);int m=n,h=1,t=0;Line Q[n+1];n=0;
    for(int i=1;i<=m;i++)if(i==1||dcmp(L[i].arg-L[i-1].arg))L[++n]=L[i];
    for(int i=1;i<=n;i++)
	{
        while(h<t&&Chk(L[i],Cross(Q[t],Q[t-1])))t--;
        while(h<t&&Chk(L[i],Cross(Q[h],Q[h+1])))h++;
        Q[++t]=L[i];
    }
    while(h<t&&Chk(Q[h],Cross(Q[t],Q[t-1])))t--;
    while(h<t&&Chk(Q[t],Cross(Q[h],Q[h+1])))h++;
	for(int i=h;i<=t;i++)L[i-h+1]=Q[i];
	return t-h+1;
}
il ll F(ll a,ll b,ll c,ll n)
{
    if(!a)return b/c*(n+1);
    if(a>=c||b>=c)return a/c*n*(n+1)/2+b/c*(n+1)+F(a%c,b%c,c,n);
    return (a*n+b)/c*n-F(c,c-b-1,a,(a*n+b)/c-1);
}
il ll Sol(ll a,ll b,ll c,ll n)
{
	ll s=0;
	if(b<0)s+=(-b+c-1)/c*(n+1),b=(b%c+c)%c;
	if(a<0)s+=(-a+c-1)/c*n*(n+1)/2,a=(a%c+c)%c;
	return F(a,b,c,n)-s;
}
il bool Ok(cn Point &a,cn Point &b,cn Point &c,cn Point &d)
{
	return On(a,c,d)||On(b,c,d);
}
const int N=23;
int n,m;
ll ans=0;
Point p[N];
Line L[N],c[N],d[N];
il bool In(cn Point &v)
{
	for(int i=1;i<=n;i++)if(dcmp(Cro(p[i]-v,p[i+1]-v))<=0)return 0;
	return 1;
}
il ll Calc(Point a,Point b,int l,int r,int op)
{
	if(op==0)a.y-=0.0001,b.y-=0.0001;
	if(a.x>b.x)swap(a,b);
	db dt=b.x-a.x,k=b.y-a.y,w=a.y*dt-a.x*k;
    dt*=40000,k*=40000,w*=40000;
	//cout<<fixed<<setprecision(10)<<k<<" "<<w<<" "<<dt<<endl;
	//cerr<<(ll)k<<" "<<(ll)w<<" "<<(ll)dt<<" "<<l<<" "<<r<<endl;
	return Sol(k,w+k*l,dt,r-l);//(op==0)*Get(k,w,dt,l,r);
}
void Change()
{
	int mny=V,pos=0;Point Q[n+1];
	for(int i=1;i<=n;i++)Q[i]=p[i];
	for(int i=1;i<=n;i++)if(p[i].y<mny)mny=p[i].y,pos=i-1;
	for(int i=1;i<=n;i++)p[i]=Q[i+pos>n?i+pos-n:i+pos];
}
int Nxt(int x){return x==n?1:x+1;}
void Add(db x,db y)
{
	Point v={x,y};int i=1;bool fl=0;
	while(1)
	{
		//cout<<i<<" "<<p[i+1].y<<endl;
		if(p[i+1].y>y)fl=1;
		if(fl)L[++m].Init(p[i],p[i+1]);
		if(fl&&p[i+1].x<x)break;
		i=Nxt(i);
	}
	while(1)
	{
		L[++m].Init(x+p[i].y-y,y+x-p[i].x,x+p[i+1].y-y,y+x-p[i+1].x);
		if(p[i+1].y<y)break;
		i=Nxt(i);
	}
	while(1)
	{
		L[++m].Init(v*2-p[i],v*2-p[i+1]);
		if(p[i+1].x>x)break;
		i=Nxt(i);
	}
	while(1)
	{
		L[++m].Init(x+y-p[i].y,y+p[i].x-x,x+y-p[i+1].y,y+p[i+1].x-x);
		if(p[i+1].y>y)break;
		i=Nxt(i);
	}
	//cout<<m<<endl;
	//for(int j=1;j<=m;j++)L[j].Out();
	//exit(0);
}
signed main()
{
	cin>>n;
	for(int i=1;i<=n;i++)p[i].In();
	reverse(p+2,p+n+1);Change();p[n+1]=p[1];
	for(db x=0;x<=V;x+=0.5)for(db y=dcmp(x-floor(x))*0.5+0;y<=V;y+=1.0)if(In({x,y}))
	{
		Point v={x,y};m=0;Add(x,y);
//		for(int i=1;i<=n;i++)
//		{
//			Point kx=p[i],ky=p[i+1];
//		    if(Ok(kx,ky,v,{V,V})||Pan(kx,ky,{V,V},v))
//		    L[++m].Init(kx,ky);
//		    if(Ok(kx,ky,{0,0},v)||Pan(kx,ky,{0,0},v))
//			L[++m].Init(v*2-kx,v*2-ky);
//		    if(Ok(kx,ky,{0,y},{x,V})||Pan(kx,ky,{0,V},v))
//		    L[++m].Init(x+kx.y-y,y+x-kx.x,x+ky.y-y,y+x-ky.x);
//		    if(Ok(kx,ky,{x,0},{V,y})||Pan(kx,ky,{V,0},v))
//		    L[++m].Init(x+y-kx.y,y+kx.x-x,x+y-ky.y,y+ky.x-x);
//		}
		//cout<<endl;
		L[++m].Init(v,{V,y});L[++m].Init({x,V},v);Line las=L[m];
		m=Halfcut(L,m);L[0]=L[m];L[m+1]=L[1];
		//cerr<<666<<endl;
		int C=0,D=0,st=0,dst=ceil(x+eps),ded=0,cst=0,ced=dst;
		//cout<<m<<endl;
//		cout<<"Line: "<<endl;
//		for(int i=1;i<=m;i++)L[i].Out();
//		cout<<endl;
		for(int i=1;i<=m;i++)if(L[i]==las){st=i;break;}
		for(int i=st==m?1:st+1;i!=st;i=i==m?1:i+1)if(L[i].b.x!=L[i].a.x)
		{
			//cout<<i<<" "<<L[i].b.x<<" "<<L[i].a.x<<endl;
			if(L[i].b.x>L[i].a.x)d[++D]=L[i];
			else 
			{
			    c[++C]=L[i];
			    if(C==1)cst=ded=floor(Cross(L[i],L[i-1]).x);
			}
		}
		//cout<<ded<<endl;
		//for(int i=1;i<=D;i++)d[i].Out();
		//cout<<endl;
		//for(int i=1;i<=C;i++)c[i].Out(); 
		//cout<<endl;
		for(int i=1;i<=D;i++)
		{
			int l=dst,r=i==D?ded:floor(Cross(d[i],d[i+1]).x);
			//cout<<l<<" "<<r<<endl;
			if(l<=r)ans-=Calc(d[i].a,d[i].b,l,r,0),dst=r+1;
		}
		//cout<<ans<<endl;
		for(int i=1;i<=C;i++)
		{
			int r=cst,l=i==C?ced:ceil(Cross(c[i],c[i+1]).x+eps);
			//cout<<l<<" "<<r<<endl;
			if(l<=r)ans+=Calc(c[i].a,c[i].b,l,r,1),cst=l-1;
		}
	}
	cout<<ans;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 942ms
memory: 3984kb

input:

4
131 603
131 1828
1919 1828
1919 603

output:

361175974386

result:

wrong answer 1st numbers differ - expected: '361182910200', found: '361175974386'

Subtask #2:

score: 0
Wrong Answer

Test #6:

score: 0
Wrong Answer
time: 768ms
memory: 4140kb

input:

3
131 603
131 1828
1919 603

output:

63735197462

result:

wrong answer 1st numbers differ - expected: '63739309181', found: '63735197462'

Subtask #3:

score: 15
Accepted

Test #11:

score: 15
Accepted
time: 31ms
memory: 4276kb

input:

8
0 13
4 15
15 15
15 6
13 1
12 0
5 0
0 6

output:

4047

result:

ok 1 number(s): "4047"

Test #12:

score: 0
Accepted
time: 22ms
memory: 4196kb

input:

8
0 4
1 15
2 15
15 14
15 4
14 0
1 0
0 2

output:

4200

result:

ok 1 number(s): "4200"

Test #13:

score: 0
Accepted
time: 24ms
memory: 4276kb

input:

5
7 15
15 13
15 0
3 0
0 15

output:

3635

result:

ok 1 number(s): "3635"

Test #14:

score: 0
Accepted
time: 33ms
memory: 4284kb

input:

8
0 12
2 14
7 15
13 15
15 10
15 1
8 0
0 0

output:

4511

result:

ok 1 number(s): "4511"

Test #15:

score: 0
Accepted
time: 26ms
memory: 4108kb

input:

6
0 11
3 15
7 15
15 12
10 0
0 0

output:

3006

result:

ok 1 number(s): "3006"

Test #16:

score: 0
Accepted
time: 20ms
memory: 4172kb

input:

5
0 0
0 2
1 2
2 1
2 0

output:

4

result:

ok 1 number(s): "4"

Subtask #4:

score: 0
Wrong Answer

Dependency #3:

100%
Accepted

Test #17:

score: 20
Accepted
time: 124ms
memory: 4204kb

input:

8
49 299
144 300
300 260
250 15
115 0
30 0
23 19
0 85

output:

443602646

result:

ok 1 number(s): "443602646"

Test #18:

score: 0
Accepted
time: 109ms
memory: 4100kb

input:

8
0 133
103 300
130 300
257 294
297 227
300 150
277 40
161 4

output:

351466521

result:

ok 1 number(s): "351466521"

Test #19:

score: 0
Accepted
time: 111ms
memory: 4176kb

input:

8
76 286
114 300
300 300
300 205
291 0
47 0
4 57
2 235

output:

605026927

result:

ok 1 number(s): "605026927"

Test #20:

score: -20
Wrong Answer
time: 112ms
memory: 4108kb

input:

8
0 102
40 274
282 300
300 234
267 0
34 0
6 57
0 86

output:

497330061

result:

wrong answer 1st numbers differ - expected: '497330741', found: '497330061'

Subtask #5:

score: 0
Skipped

Dependency #4:

0%

Subtask #6:

score: 0
Skipped

Dependency #1:

0%