QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#419723#8669. 正方形计数Hanghang75 2616ms4248kbC++145.1kb2024-05-24 10:25:132024-05-24 10:25:13

Judging History

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

  • [2024-05-24 10:25:13]
  • 评测
  • 测评结果:75
  • 用时:2616ms
  • 内存:4248kb
  • [2024-05-24 10:25:13]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;

typedef long long ll;
#define int ll
typedef double db;
const db eps=1e-8,V=3003;
int dcmp(db x){return x>eps?1:x<-eps?-1:0;}
struct Point
{
    db x,y;
    void In(){cin>>x>>y;x+=1001;y+=1001;}
    void Out(){cout<<x<<" "<<y<<endl;}
};
bool operator ==(Point A,Point B){return !dcmp(A.x-B.x)&&!dcmp(A.y-B.y);}
typedef Point Vec;
Vec operator +(Vec A,Vec B){return {A.x+B.x,A.y+B.y};}
Vec operator -(Vec A,Vec B){return {A.x-B.x,A.y-B.y};}
Vec operator *(Vec A,db d){return {A.x*d,A.y*d};}
db Cro(Vec A,Vec B){return A.x*B.y-A.y*B.x;}
db Dot(Vec A,Vec B){return A.x*B.x+A.y*B.y;}
Point Cross_LL(Point a,Point b,Point c,Point d)
{
    Vec x=b-a,y=d-c,z=a-c;
    return a+x*(Cro(y,z)/Cro(x,y));
}
bool Pan(Point a,Point b,Point c,Point d)
{
    db c1=Cro(b-a,c-a),c2=Cro(b-a,d-a);
    db d1=Cro(d-c,a-c),d2=Cro(d-c,b-c);
    return dcmp(c1)*dcmp(c2)<0&&dcmp(d1)*dcmp(d2)<0;
}
bool On(Point p,Point a,Point b){return a.x<=p.x&&p.x<=b.x&&a.y<=p.y&&p.y<=b.y;}
db Atan(Vec a){return atan2(a.y,a.x);}
struct Line
{
    Point a,b;db arg;
    void Init(Point _a,Point _b){a=_a;b=_b;arg=Atan(b-a);}
    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;}
};
bool operator ==(Line A,Line B){return A.a==B.a&&A.b==B.b;}
Point Cross(Line L1,Line L2){return Cross_LL(L1.a,L1.b,L2.a,L2.b);}
int Chk(Line L,Point a){return dcmp(Cro(a-L.a,L.b-L.a))>0;}
bool Cmp(Line L1,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;
}
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;
}
ll F(ll a,ll b,ll c,ll n)
{
    ll ac=a/c,bc=b/c,m=(a*n+b)/c;
    if(!a)return bc*(n+1);
    if(a>=c||b>=c)return n*(n+1)/2*ac+(n+1)*bc+F(a%c,b%c,c,n);
    return n*m-F(c,c-b-1,a,m-1);
}
ll _F(ll a,ll b,ll c,ll n)
{
	ll d=__gcd(__gcd(a,b),c);
	return F(a/d,b/d,c/d,n);
}
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; 
}
bool Ok(Point a,Point b,Point c,Point d,Point e,Point f)
{
	if(On(a,c,e)||On(b,c,e))return 1;
	return Pan(a,b,c,d)||Pan(a,b,d,e)||Pan(a,b,e,f)||Pan(a,b,f,c);
}
ll Get(ll a,ll b,ll c,ll l,ll r)
{
	ll s=0;
	for(ll i=l;i<=r;i++)s+=(a*i+b)%c==0;
	return s;
}
const int N=23;
int n,m;
ll ans=0;
Point p[N];
Line L[N],c[N],d[N];
bool In(Point v)
{
	for(int i=1;i<=n;i++)if(dcmp(Cro(p[i]-v,p[i+1]-v))<=0)return 0;
	return 1;
}
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;
	return Sol(k,w,dt,r)-Sol(k,w,dt,l-1);//(op==0)*Get(k,w,dt,l,r);
}
signed main()
{
	cin>>n;
	for(int i=1;i<=n;i++)p[i].In();
	reverse(p+2,p+n+1);p[n+1]=p[1];
	for(int i=1;i<=n;i++)L[i].Init(p[i],p[i+1]);
	for(db x=1000;x<=V;x+=0.5)for(db y=dcmp(x-floor(x))*0.5+1000;y<=V;y+=1.0)if(In({x,y}))
	{
		if(dcmp(x-floor(x))!=dcmp(y-floor(y)))continue;
		Point v={x,y};m=0;
		for(int i=1;i<=n;i++)if(Ok(p[i],p[i+1],v,{x,V},{V,V},{V,y}))L[++m].Init(p[i],p[i+1]);
		//cout<<endl;
		for(int i=1;i<=n;i++)if(Ok(p[i],p[i+1],{0,0},{0,y},v,{x,0}))L[++m].Init(v*2-p[i],v*2-p[i+1]);
		//cout<<endl;
		for(int i=1;i<=n;i++)if(Ok(p[i],p[i+1],{0,y},{0,V},{x,V},v))
		    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);
		//cout<<endl;
		for(int i=1;i<=n;i++)if(Ok(p[i],p[i+1],{x,0},v,{V,y},{0,y}))
		    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);
		//cout<<endl;
		L[++m].Init(v,{V,y});L[++m].Init({x,V},v);Line las=L[m];
		//cout<<m<<endl;
		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;
		for(int i=st%m+1;i!=st;i=i%m+1)
		{
			//cout<<i<<" "<<L[i].b.x<<" "<<L[i].a.x<<endl;
			if(L[i].b.x>L[i].a.x)d[++D]=L[i];
			if(L[i].b.x<L[i].a.x)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<<endl;
	}
	cout<<ans;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Time Limit Exceeded

Test #1:

score: 10
Accepted
time: 2301ms
memory: 3928kb

input:

4
131 603
131 1828
1919 1828
1919 603

output:

361182910200

result:

ok 1 number(s): "361182910200"

Test #2:

score: 0
Accepted
time: 47ms
memory: 3928kb

input:

4
239 211
239 962
261 962
261 211

output:

1498772

result:

ok 1 number(s): "1498772"

Test #3:

score: -10
Time Limit Exceeded

input:

4
0 0
0 2000
2000 2000
2000 0

output:


result:


Subtask #2:

score: 25
Accepted

Test #6:

score: 25
Accepted
time: 2616ms
memory: 4152kb

input:

3
131 603
131 1828
1919 603

output:

63739309181

result:

ok 1 number(s): "63739309181"

Test #7:

score: 0
Accepted
time: 37ms
memory: 4156kb

input:

3
239 211
239 962
261 211

output:

353073

result:

ok 1 number(s): "353073"

Test #8:

score: 0
Accepted
time: 2392ms
memory: 4180kb

input:

3
0 0
0 2000
2000 0

output:

222889277611

result:

ok 1 number(s): "222889277611"

Test #9:

score: 0
Accepted
time: 34ms
memory: 4064kb

input:

3
36 771
36 786
672 771

output:

98847

result:

ok 1 number(s): "98847"

Test #10:

score: 0
Accepted
time: 35ms
memory: 4152kb

input:

3
0 0
0 100
100 0

output:

1473186

result:

ok 1 number(s): "1473186"

Subtask #3:

score: 15
Accepted

Test #11:

score: 15
Accepted
time: 55ms
memory: 4112kb

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: 47ms
memory: 4248kb

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: 23ms
memory: 4104kb

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: 41ms
memory: 4200kb

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: 35ms
memory: 4184kb

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: 30ms
memory: 4208kb

input:

5
0 0
0 2
1 2
2 1
2 0

output:

4

result:

ok 1 number(s): "4"

Subtask #4:

score: 20
Accepted

Dependency #3:

100%
Accepted

Test #17:

score: 20
Accepted
time: 320ms
memory: 4112kb

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: 289ms
memory: 4180kb

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: 282ms
memory: 4184kb

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: 0
Accepted
time: 302ms
memory: 4204kb

input:

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

output:

497330741

result:

ok 1 number(s): "497330741"

Test #21:

score: 0
Accepted
time: 265ms
memory: 4088kb

input:

7
0 288
156 300
212 300
265 176
300 86
278 0
0 36

output:

446722651

result:

ok 1 number(s): "446722651"

Subtask #5:

score: 15
Accepted

Dependency #4:

100%
Accepted

Test #22:

score: 15
Accepted
time: 1458ms
memory: 4164kb

input:

5
257 800
766 800
800 353
667 0
42 0

output:

18881369614

result:

ok 1 number(s): "18881369614"

Test #23:

score: 0
Accepted
time: 1431ms
memory: 4088kb

input:

8
691 800
737 795
800 651
372 98
136 266
118 318
24 629
12 753

output:

8760058886

result:

ok 1 number(s): "8760058886"

Test #24:

score: 0
Accepted
time: 1020ms
memory: 4076kb

input:

8
718 800
740 800
800 726
800 670
711 367
595 150
86 0
57 136

output:

3064355626

result:

ok 1 number(s): "3064355626"

Test #25:

score: 0
Accepted
time: 1793ms
memory: 4164kb

input:

8
0 347
16 449
364 798
674 800
750 800
797 14
195 0
0 70

output:

23587042437

result:

ok 1 number(s): "23587042437"

Test #26:

score: 0
Accepted
time: 2067ms
memory: 4080kb

input:

8
322 800
596 800
686 777
800 280
764 69
396 0
46 179
0 660

output:

23185884331

result:

ok 1 number(s): "23185884331"

Subtask #6:

score: 0
Skipped

Dependency #1:

0%