forked from beet-aizu/library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeometry.cpp
1130 lines (1007 loc) · 24.5 KB
/
geometry.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include<bits/stdc++.h>
using namespace std;
using Int = long long;
//BEGIN CUT HERE
#define EPS (1e-10)
#define equals(a,b) (fabs((a)-(b)) < EPS)
#define PI 3.141592653589793238
// COUNTER CLOCKWISE
static const int CCW_COUNTER_CLOCKWISE = 1;
static const int CCW_CLOCKWISE = -1;
static const int CCW_ONLINE_BACK = 2;
static const int CCW_ONLINE_FRONT = -2;
static const int CCW_ON_SEGMENT = 0;
//Intercsect Circle & Circle
static const int ICC_SEPERATE = 4;
static const int ICC_CIRCUMSCRIBE = 3;
static const int ICC_INTERSECT = 2;
static const int ICC_INSCRIBE = 1;
static const int ICC_CONTAIN = 0;
struct Point{
double x,y;
Point(){}
Point(double x,double y) :x(x),y(y){}
Point operator+(Point p) {return Point(x+p.x,y+p.y);}
Point operator-(Point p) {return Point(x-p.x,y-p.y);}
Point operator*(double k){return Point(x*k,y*k);}
Point operator/(double k){return Point(x/k,y/k);}
double norm(){return x*x+y*y;}
double abs(){return sqrt(norm());}
bool operator < (const Point &p) const{
return x!=p.x?x<p.x:y<p.y;
//grid-point only
//return !equals(x,p.x)?x<p.x:!equals(y,p.y)?y<p.y:0;
}
bool operator == (const Point &p) const{
return fabs(x-p.x)<EPS && fabs(y-p.y)<EPS;
}
};
struct EndPoint{
Point p;
int seg,st;
EndPoint(){}
EndPoint(Point p,int seg,int st):p(p),seg(seg),st(st){}
bool operator<(const EndPoint &ep)const{
if(p.y==ep.p.y) return st<ep.st;
return p.y<ep.p.y;
}
};
istream &operator >> (istream &is,Point &p){
is>>p.x>>p.y;
return is;
}
ostream &operator << (ostream &os,Point p){
os<<fixed<<setprecision(12)<<p.x<<" "<<p.y;
return os;
}
bool sort_x(Point a,Point b){
return a.x!=b.x?a.x<b.x:a.y<b.y;
}
bool sort_y(Point a,Point b){
return a.y!=b.y?a.y<b.y:a.x<b.x;
}
typedef Point Vector;
typedef vector<Point> Polygon;
istream &operator >> (istream &is,Polygon &p){
for(int i=0;i<(int)p.size();i++) cin>>p[i];
return is;
}
struct Segment{
Point p1,p2;
Segment(){}
Segment(Point p1, Point p2):p1(p1),p2(p2){}
};
typedef Segment Line;
istream &operator >> (istream &is,Segment &s){
is>>s.p1>>s.p2;
return is;
}
struct Circle{
Point c;
double r;
Circle(){}
Circle(Point c,double r):c(c),r(r){}
};
istream &operator >> (istream &is,Circle &c){
is>>c.c>>c.r;
return is;
}
double norm(Vector a){
return a.x*a.x+a.y*a.y;
}
double abs(Vector a){
return sqrt(norm(a));
}
double dot(Vector a,Vector b){
return a.x*b.x+a.y*b.y;
}
double cross(Vector a,Vector b){
return a.x*b.y-a.y*b.x;
}
Point orth(Point p){return Point(-p.y,p.x);}
bool isOrthogonal(Vector a,Vector b){
return equals(dot(a,b),0.0);
}
bool isOrthogonal(Point a1,Point a2,Point b1,Point b2){
return isOrthogonal(a1-a2,b1-b2);
}
bool isOrthogonal(Segment s1,Segment s2){
return equals(dot(s1.p2-s1.p1,s2.p2-s2.p1),0.0);
}
bool isParallel(Vector a,Vector b){
return equals(cross(a,b),0.0);
}
bool isParallel(Point a1,Point a2,Point b1,Point b2){
return isParallel(a1-a2,b1-b2);
}
bool isParallel(Segment s1,Segment s2){
return equals(cross(s1.p2-s1.p1,s2.p2-s2.p1),0.0);
}
Point project(Segment s,Point p){
Vector base=s.p2-s.p1;
double r=dot(p-s.p1,base)/norm(base);
return s.p1+base*r;
}
Point reflect(Segment s,Point p){
return p+(project(s,p)-p)*2.0;
}
double arg(Vector p){
return atan2(p.y,p.x);
}
Vector polar(double a,double r){
return Point(cos(r)*a,sin(r)*a);
}
int ccw(Point p0,Point p1,Point p2);
bool intersectSS(Point p1,Point p2,Point p3,Point p4);
bool intersectSS(Segment s1,Segment s2);
bool intersectPS(Polygon p,Segment l);
int intersectCC(Circle c1,Circle c2);
bool intersectSC(Segment s,Circle c);
double getDistanceLP(Line l,Point p);
double getDistanceSP(Segment s,Point p);
double getDistanceSS(Segment s1,Segment s2);
Point getCrossPointSS(Segment s1,Segment s2);
Point getCrossPointLL(Line l1,Line l2);
Polygon getCrossPointCL(Circle c,Line l);
Polygon getCrossPointCC(Circle c1,Circle c2);
int contains(Polygon g,Point p);
Polygon andrewScan(Polygon s);
Polygon convex_hull(Polygon ps);
double diameter(Polygon s);
bool isConvex(Polygon p);
double area(Polygon s);
Polygon convexCut(Polygon p,Line l);
Line bisector(Point p1,Point p2);
Vector translate(Vector v,double theta);
vector<Line> corner(Line l1,Line l2);
vector<vector<pair<int, double> > >
segmentArrangement(vector<Segment> &ss, Polygon &ps);
int ccw(Point p0,Point p1,Point p2){
Vector a = p1-p0;
Vector b = p2-p0;
if(cross(a,b) > EPS) return CCW_COUNTER_CLOCKWISE;
if(cross(a,b) < -EPS) return CCW_CLOCKWISE;
if(dot(a,b) < -EPS) return CCW_ONLINE_BACK;
if(a.norm()<b.norm()) return CCW_ONLINE_FRONT;
return CCW_ON_SEGMENT;
}
bool intersectSS(Point p1,Point p2,Point p3,Point p4){
return (ccw(p1,p2,p3)*ccw(p1,p2,p4) <= 0 &&
ccw(p3,p4,p1)*ccw(p3,p4,p2) <= 0 );
}
bool intersectSS(Segment s1,Segment s2){
return intersectSS(s1.p1,s1.p2,s2.p1,s2.p2);
}
bool intersectPS(Polygon p,Segment l){
int n=p.size();
for(int i=0;i<n;i++)
if(intersectSS(Segment(p[i],p[(i+1)%n]),l)) return 1;
return 0;
}
int intersectCC(Circle c1,Circle c2){
if(c1.r<c2.r) swap(c1,c2);
double d=abs(c1.c-c2.c);
double r=c1.r+c2.r;
if(equals(d,r)) return ICC_CIRCUMSCRIBE;
if(d>r) return ICC_SEPERATE;
if(equals(d+c2.r,c1.r)) return ICC_INSCRIBE;
if(d+c2.r<c1.r) return ICC_CONTAIN;
return ICC_INTERSECT;
}
bool intersectSC(Segment s,Circle c){
return getDistanceSP(s,c.c)<=c.r;
}
int intersectCS(Circle c,Segment s){
if(norm(project(s,c.c)-c.c)-c.r*c.r>EPS) return 0;
double d1=abs(c.c-s.p1),d2=abs(c.c-s.p2);
if(d1<c.r+EPS&&d2<c.r+EPS) return 0;
if((d1<c.r-EPS&&d2>c.r+EPS)||(d1>c.r+EPS&&d2<c.r-EPS)) return 1;
Point h=project(s,c.c);
if(dot(s.p1-h,s.p2-h)<0) return 2;
return 0;
}
double getDistanceLP(Line l,Point p){
return abs(cross(l.p2-l.p1,p-l.p1)/abs(l.p2-l.p1));
}
double getDistanceSP(Segment s,Point p){
if(dot(s.p2-s.p1,p-s.p1) < 0.0 ) return abs(p-s.p1);
if(dot(s.p1-s.p2,p-s.p2) < 0.0 ) return abs(p-s.p2);
return getDistanceLP(s,p);
}
double getDistanceSS(Segment s1,Segment s2){
if(intersectSS(s1,s2)) return 0.0;
return min(min(getDistanceSP(s1,s2.p1),getDistanceSP(s1,s2.p2)),
min(getDistanceSP(s2,s1.p1),getDistanceSP(s2,s1.p2)));
}
Point getCrossPointSS(Segment s1,Segment s2){
for(int k=0;k<2;k++){
if(getDistanceSP(s1,s2.p1)<EPS) return s2.p1;
if(getDistanceSP(s1,s2.p2)<EPS) return s2.p2;
swap(s1,s2);
}
Vector base=s2.p2-s2.p1;
double d1=abs(cross(base,s1.p1-s2.p1));
double d2=abs(cross(base,s1.p2-s2.p1));
double t=d1/(d1+d2);
return s1.p1+(s1.p2-s1.p1)*t;
}
Point getCrossPointLL(Line l1,Line l2){
double a=cross(l1.p2-l1.p1,l2.p2-l2.p1);
double b=cross(l1.p2-l1.p1,l1.p2-l2.p1);
if(abs(a)<EPS&&abs(b)<EPS) return l2.p1;
return l2.p1+(l2.p2-l2.p1)*(b/a);
}
Polygon getCrossPointCL(Circle c,Line l){
Polygon ps;
Point pr=project(l,c.c);
Vector e=(l.p2-l.p1)/abs(l.p2-l.p1);
if(equals(getDistanceLP(l,c.c),c.r)){
ps.emplace_back(pr);
return ps;
}
double base=sqrt(c.r*c.r-norm(pr-c.c));
ps.emplace_back(pr+e*base);
ps.emplace_back(pr-e*base);
return ps;
}
Polygon getCrossPointCS(Circle c,Segment s){
Line l(s);
Polygon res=getCrossPointCL(c,l);
if(intersectCS(c,s)==2) return res;
if(res.size()>1u){
if(dot(l.p1-res[0],l.p2-res[0])>0) swap(res[0],res[1]);
res.pop_back();
}
return res;
}
Polygon getCrossPointCC(Circle c1,Circle c2){
Polygon p(2);
double d=abs(c1.c-c2.c);
double a=acos((c1.r*c1.r+d*d-c2.r*c2.r)/(2*c1.r*d));
double t=arg(c2.c-c1.c);
p[0]=c1.c+polar(c1.r,t+a);
p[1]=c1.c+polar(c1.r,t-a);
return p;
}
// IN:2 ON:1 OUT:0
int contains(Polygon g,Point p){
int n=g.size();
bool x=false;
for(int i=0;i<n;i++){
Point a=g[i]-p,b=g[(i+1)%n]-p;
if(fabs(cross(a,b)) < EPS && dot(a,b) < EPS) return 1;
if(a.y>b.y) swap(a,b);
if(a.y < EPS && EPS < b.y && cross(a,b) > EPS ) x = !x;
}
return (x?2:0);
}
Polygon andrewScan(Polygon s){
Polygon u,l;
if(s.size()<3) return s;
sort(s.begin(),s.end());
u.push_back(s[0]);
u.push_back(s[1]);
l.push_back(s[s.size()-1]);
l.push_back(s[s.size()-2]);
for(int i=2;i<(int)s.size();i++){
for(int n=u.size();n>=2&&ccw(u[n-2],u[n-1],s[i])!=CCW_CLOCKWISE;n--){
u.pop_back();
}
u.push_back(s[i]);
}
for(int i=s.size()-3;i>=0;i--){
for(int n=l.size();n>=2&&ccw(l[n-2],l[n-1],s[i])!=CCW_CLOCKWISE;n--){
l.pop_back();
}
l.push_back(s[i]);
}
reverse(l.begin(),l.end());
for(int i=u.size()-2;i>=1;i--) l.push_back(u[i]);
return l;
}
Polygon convex_hull(Polygon ps){
int n=ps.size();
sort(ps.begin(),ps.end(),sort_y);
int k=0;
Polygon qs(n*2);
for(int i=0;i<n;i++){
while(k>1&&cross(qs[k-1]-qs[k-2],ps[i]-qs[k-1])<0) k--;
qs[k++]=ps[i];
}
for(int i=n-2,t=k;i>=0;i--){
while(k>t&&cross(qs[k-1]-qs[k-2],ps[i]-qs[k-1])<0) k--;
qs[k++]=ps[i];
}
qs.resize(k-1);
return qs;
}
double diameter(Polygon s){
Polygon p=s;
int n=p.size();
if(n==2) return abs(p[0]-p[1]);
int i=0,j=0;
for(int k=0;k<n;k++){
if(p[i]<p[k]) i=k;
if(!(p[j]<p[k])) j=k;
}
double res=0;
int si=i,sj=j;
while(i!=sj||j!=si){
res=max(res,abs(p[i]-p[j]));
if(cross(p[(i+1)%n]-p[i],p[(j+1)%n]-p[j])<0.0){
i=(i+1)%n;
}else{
j=(j+1)%n;
}
}
return res;
}
bool isConvex(Polygon p){
bool f=1;
int n=p.size();
for(int i=0;i<n;i++){
int t=ccw(p[(i+n-1)%n],p[i],p[(i+1)%n]);
f&=t!=CCW_CLOCKWISE;
}
return f;
}
double area(Polygon s){
double res=0;
for(int i=0;i<(int)s.size();i++){
res+=cross(s[i],s[(i+1)%s.size()])/2.0;
}
return abs(res);
}
double area(Circle c1,Circle c2){
double d=abs(c1.c-c2.c);
if(c1.r+c2.r<=d+EPS) return 0;
if(d<=abs(c1.r-c2.r)){
double r=min(c1.r,c2.r);
return PI*r*r;
}
double rc=(d*d+c1.r*c1.r-c2.r*c2.r)/(2*d);
double th=acos(rc/c1.r);
double ph=acos((d-rc)/c2.r);
return c1.r*c1.r*th+c2.r*c2.r*ph-d*c1.r*sin(th);
}
Polygon convexCut(Polygon p,Line l){
Polygon q;
for(int i=0;i<(int)p.size();i++){
Point a=p[i],b=p[(i+1)%p.size()];
if(ccw(l.p1,l.p2,a)!=-1) q.push_back(a);
if(ccw(l.p1,l.p2,a)*ccw(l.p1,l.p2,b)<0)
q.push_back(getCrossPointLL(Line(a,b),l));
}
return q;
}
Line bisector(Point p1,Point p2){
Circle c1=Circle(p1,abs(p1-p2)),c2=Circle(p2,abs(p1-p2));
Polygon p=getCrossPointCC(c1,c2);
if(cross(p2-p1,p[0]-p1)>0) swap(p[0],p[1]);
return Line(p[0],p[1]);
}
Vector translate(Vector v,double theta){
Vector res;
res.x=cos(theta)*v.x-sin(theta)*v.y;
res.y=sin(theta)*v.x+cos(theta)*v.y;
return res;
}
vector<Line> corner(Line l1,Line l2){
vector<Line> res;
if(isParallel(l1,l2)){
double d=getDistanceLP(l1,l2.p1)/2.0;
Vector v1=l1.p2-l1.p1;
v1=v1/v1.abs()*d;
Point p=l2.p1+translate(v1,90.0*(PI/180.0));
double d1=getDistanceLP(l1,p);
double d2=getDistanceLP(l2,p);
if(abs(d1-d2)>d){
p=l2.p1+translate(v1,-90.0*(PI/180.0));
}
res.push_back(Line(p,p+v1));
}else{
Point p=getCrossPointLL(l1,l2);
Vector v1=l1.p2-l1.p1,v2=l2.p2-l2.p1;
v1=v1/v1.abs();
v2=v2/v2.abs();
res.push_back(Line(p,p+(v1+v2)));
res.push_back(Line(p,p+translate(v1+v2,90.0*(PI/180.0))));
}
return res;
}
Polygon tangent(Circle c1,Point p2){
Circle c2=Circle(p2,sqrt(norm(c1.c-p2)-c1.r*c1.r));
Polygon p=getCrossPointCC(c1,c2);
sort(p.begin(),p.end());
return p;
}
vector<Line> tangent(Circle c1,Circle c2){
vector<Line> ls;
if(c1.r<c2.r) swap(c1,c2);
double g=norm(c1.c-c2.c);
if(equals(g,0)) return ls;
Point u=(c2.c-c1.c)/sqrt(g);
Point v=orth(u);
for(int s=1;s>=-1;s-=2){
double h=(c1.r+s*c2.r)/sqrt(g);
if(equals(1-h*h,0)){
ls.emplace_back(c1.c+u*c1.r,c1.c+(u+v)*c1.r);
}else if(1-h*h>0){
Point uu=u*h,vv=v*sqrt(1-h*h);
ls.emplace_back(c1.c+(uu+vv)*c1.r,c2.c-(uu+vv)*c2.r*s);
ls.emplace_back(c1.c+(uu-vv)*c1.r,c2.c-(uu-vv)*c2.r*s);
}
}
return ls;
}
double closest_pair(Polygon &a,int l=0,int r=-1){
if(r<0){
r=a.size();
sort(a.begin(),a.end(),sort_x);
}
if(r-l<=1) return abs(a[0]-a[1]);
int m=(l+r)>>1;
double x=a[m].x;
double d=min(closest_pair(a,l,m),closest_pair(a,m,r));
inplace_merge(a.begin()+l,a.begin()+m,a.begin()+r,sort_y);
Polygon b;
for(int i=l;i<r;i++){
if(fabs(a[i].x-x)>=d) continue;
for(int j=0;j<(int)b.size();j++){
double dy=a[i].y-next(b.rbegin(),j)->y;
if(dy>=d) break;
d=min(d,abs(a[i]-*next(b.rbegin(),j)));
}
b.emplace_back(a[i]);
}
return d;
}
vector<vector<pair<int, double> > >
segmentArrangement(vector<Segment> &ss, Polygon &ps){
int n=ss.size();
for(int i=0;i<n;i++){
ps.emplace_back(ss[i].p1);
ps.emplace_back(ss[i].p2);
for(int j=i+1;j<n;j++)
if(intersectSS(ss[i],ss[j]))
ps.emplace_back(getCrossPointSS(ss[i],ss[j]));
}
sort(ps.begin(),ps.end());
ps.erase(unique(ps.begin(),ps.end()),ps.end());
vector<vector<pair<int, double> > > G(ps.size());
for(int i=0;i<n;i++){
vector<pair<double,int> > ls;
for(int j=0;j<(int)ps.size();j++)
if(getDistanceSP(ss[i],ps[j])<EPS)
ls.emplace_back(make_pair(norm(ss[i].p1-ps[j]),j));
sort(ls.begin(),ls.end());
for(int j=0;j+1<(int)ls.size();j++){
int a=ls[j].second,b=ls[j+1].second;
G[a].emplace_back(b,abs(ps[a]-ps[b]));
G[b].emplace_back(a,abs(ps[a]-ps[b]));
}
}
return G;
}
int manhattanIntersection(vector<Segment> ss,const int INF){
const int BTM = 0;
const int LFT = 1;
const int RGH = 2;
const int TOP = 3;
int n=ss.size();
vector<EndPoint> ep;
for(int i=0;i<n;i++){
if(ss[i].p1.y==ss[i].p2.y){
if(ss[i].p1.x>ss[i].p2.x) swap(ss[i].p1,ss[i].p2);
ep.emplace_back(ss[i].p1,i,LFT);
ep.emplace_back(ss[i].p2,i,RGH);
}else{
if(ss[i].p1.y>ss[i].p2.y) swap(ss[i].p1,ss[i].p2);
ep.emplace_back(ss[i].p1,i,BTM);
ep.emplace_back(ss[i].p2,i,TOP);
}
}
sort(ep.begin(),ep.end());
set<int> bt;
bt.insert(INF);
int cnt=0;
for(int i=0;i<n*2;i++){
if(ep[i].st==TOP){
bt.erase(ep[i].p.x);
}else if(ep[i].st==BTM){
bt.emplace(ep[i].p.x);
}else if(ep[i].st==LFT){
auto b=bt.lower_bound(ss[ep[i].seg].p1.x);
auto e=bt.upper_bound(ss[ep[i].seg].p2.x);
cnt+=distance(b,e);
}
}
return cnt;
}
double area(Polygon ps,Circle c){
if(ps.size()<3u) return 0;
function<double(Circle, Point, Point)> dfs=
[&](Circle c,Point a,Point b){
Vector va=c.c-a,vb=c.c-b;
double f=cross(va,vb),res=0;
if(equals(f,0.0)) return res;
if(max(abs(va),abs(vb))<c.r+EPS) return f;
Vector d(a.x*b.x+a.y*b.y,a.x*b.y-a.y*b.x);
if(getDistanceSP(Segment(a,b),c.c)>c.r-EPS)
return c.r*c.r*atan2(d.y,d.x);
auto u=getCrossPointCS(c,Segment(a,b));
if(u.empty()) return res;
if(u.size()>1u&&dot(u[1]-u[0],a-u[0])>0) swap(u[0],u[1]);
u.emplace(u.begin(),a);
u.emplace_back(b);
for(int i=1;i<(int)u.size();i++)
res+=dfs(c,u[i-1],u[i]);
return res;
};
double res=0;
for(int i=0;i<(int)ps.size();i++)
res+=dfs(c,ps[i],ps[(i+1)%ps.size()]);
return res/2;
}
//END CUT HERE
//Projection
signed AOJ_CGL1A(){
Point p1,p2;
cin>>p1>>p2;
int q;
cin>>q;
while(q--){
Point p;
cin>>p;
cout<<project(Line(p1,p2),p)<<endl;
}
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_1_A&lang=jp
*/
//Reflect
signed AOJ_CGL1B(){
Point p1,p2;
cin>>p1>>p2;
int q;
cin>>q;
while(q--){
Point p;
cin>>p;
cout<<reflect(Line(p1,p2),p)<<endl;
}
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_1_B&lang=jp
*/
//CCW
signed AOJ_CGL1C(){
Point p0,p1;
cin>>p0>>p1;
int q;
cin>>q;
while(q--){
Point p2;
cin>>p2;
int t=ccw(p0,p1,p2);
if(t==CCW_COUNTER_CLOCKWISE) cout<<"COUNTER_CLOCKWISE"<<endl;
if(t==CCW_CLOCKWISE) cout<<"CLOCKWISE"<<endl;
if(t==CCW_ONLINE_BACK) cout<<"ONLINE_BACK"<<endl;
if(t==CCW_ONLINE_FRONT) cout<<"ONLINE_FRONT"<<endl;
if(t==CCW_ON_SEGMENT) cout<<"ON_SEGMENT"<<endl;
}
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_1_C&lang=jp
*/
//Parallel / Orthogonal
signed AOJ_CGL2A(){
int q;
cin>>q;
while(q--){
Point p0,p1,p2,p3;
cin>>p0>>p1>>p2>>p3;
if(isParallel(Line(p0,p1),Line(p2,p3))) cout<<2<<endl;
else if(isOrthogonal(Line(p0,p1),Line(p2,p3))) cout<<1<<endl;
else cout<<0<<endl;
}
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_2_A&lang=jp
*/
//intersectSS
signed AOJ_CGL2B(){
int q;
cin>>q;
while(q--){
Point p0,p1,p2,p3;
cin>>p0>>p1>>p2>>p3;
cout<<(intersectSS(Segment(p0,p1),Segment(p2,p3)))<<endl;
}
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_2_B&lang=jp
*/
//cross point
signed AOJ_CGL2C(){
int q;
cin>>q;
while(q--){
Point p0,p1,p2,p3;
cin>>p0>>p1>>p2>>p3;
cout<<getCrossPointSS(Segment(p0,p1),Segment(p2,p3))<<endl;
}
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_2_C&lang=jp
*/
//distanceSS
signed AOJ_CGL2D(){
int q;
cin>>q;
while(q--){
Point p0,p1,p2,p3;
cin>>p0>>p1>>p2>>p3;
printf("%.12f\n",getDistanceSS(Segment(p0,p1),Segment(p2,p3)));
}
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_2_D&lang=jp
*/
//area of Polygon
signed AOJ_CGL3A(){
int n;
cin>>n;
Polygon p(n);
for(int i=0;i<n;i++) cin>>p[i];
printf("%.1f\n",area(p));
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_3_A&lang=jp
*/
//isConvex
signed AOJ_CGL3B(){
int n;
cin>>n;
Polygon p(n);
for(int i=0;i<n;i++) cin>>p[i];
cout<<isConvex(p)<<endl;
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_3_B&lang=jp
*/
//contains
signed AOJ_CGL3C(){
int n;
cin>>n;
Polygon p(n);
for(int i=0;i<n;i++) cin>>p[i];
int q;
cin>>q;
while(q--){
Point r;
cin>>r;
cout<<contains(p,r)<<endl;
}
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_3_C
*/
//convex hull
signed AOJ_CGL4A(){
int n;
cin>>n;
Polygon p(n);
for(int i=0;i<n;i++) cin>>p[i];
Polygon q=convex_hull(p);
cout<<q.size()<<endl;
for(Point v:q) cout<<v.x<<" "<<v.y<<endl;
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_4_A&lang=jp
*/
//diameter of Polygon
signed AOJ_CGL4B(){
int n;
cin>>n;
Polygon p(n);
for(int i=0;i<n;i++) cin>>p[i];
printf("%.12f\n",diameter(p));
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_4_B&lang=jp
*/
//convexCut:
signed AOJ_CGL4C(){
int n;
cin>>n;
Polygon g(n);
for(int i=0;i<n;i++) cin>>g[i];
Polygon p=andrewScan(g);
int q;
cin>>q;
while(q--){
Line l;
cin>>l.p1>>l.p2;
printf("%.12f\n",area(convexCut(p,l)));
}
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_4_C&lang=jp
*/
//closest pair:
signed AOJ_CGL5A(){
int n;
cin>>n;
Polygon p(n);
for(int i=0;i<n;i++) cin>>p[i];
cout<<fixed<<setprecision(12)<<closest_pair(p)<<endl;
return 0;
}
/*
verified on 2018/01/04
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_5_A&lang=jp
*/
//manhattanIntersection:
signed AOJ_CGL6A(){
int n;
cin>>n;
vector<Segment> ss(n);
for(int i=0;i<n;i++) cin>>ss[i];
//for(int i=0;i<n;i++) cout<<ss[i].p1<<":"<<ss[i].p2<<endl;
cout<<manhattanIntersection(ss,1e9+10)<<endl;
return 0;
}
/*
verified on 2018/06/18
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_6_A&lang=jp
*/
//intersectCC
signed AOJ_CGL7A(){
Circle c1,c2;
cin>>c1>>c2;
cout<<intersectCC(c1,c2)<<endl;
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_7_A&lang=jp
*/
//getCrossPointCL
signed AOJ_CGL7D(){
Circle c;
int q;
cin>>c>>q;
while(q--){
Line l;
cin>>l;
auto pp=getCrossPointCL(c,l);
if(pp.size()==1u) pp.emplace_back(pp[0]);
if(pp[1]<pp[0]) swap(pp[0],pp[1]);
cout<<pp[0]<<" "<<pp[1]<<endl;
}
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_7_D&lang=jp
*/
//intersectCC
signed AOJ_CGL7E(){
Circle c1,c2;
cin>>c1>>c2;
auto pp=getCrossPointCC(c1,c2);
if(pp.size()==1u) pp.emplace_back(pp[0]);
if(pp[1]<pp[0]) swap(pp[0],pp[1]);
cout<<pp[0]<<" "<<pp[1]<<endl;
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_7_E&lang=jp
*/
//tangent to a Circle
signed AOJ_CGL7F(){
Point p;
Circle c;
cin>>p>>c;
auto pp=tangent(c,p);
for(auto p:pp) cout<<p<<endl;
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=CGL_7_F&lang=jp
*/
//Common Tangent
signed AOJ_CGL7G(){
Circle c1,c2;
cin>>c1>>c2;
auto ls=tangent(c1,c2);
Polygon ps;
for(auto l:ls) ps.emplace_back(getCrossPointCL(c1,l)[0]);
sort(ps.begin(),ps.end());
for(auto p:ps) cout<<p<<endl;
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge//description.jsp?id=CGL_7_G&lang=jp
*/
//Intersection of a Circle and a Polygon
signed AOJ_CGL7H(){
int n;
double r;
cin>>n>>r;
Circle c(Point(0,0),r);
Polygon ps(n);
for(int i=0;i<n;i++) cin>>ps[i];
cout<<fixed<<setprecision(12)<<area(ps,c)<<endl;
return 0;
}
/*
verified on 2017/12/31
http://judge.u-aizu.ac.jp/onlinejudge//description.jsp?id=CGL_7_G&lang=jp
*/
//area of 2 circles' intersection
signed AOJ_2572(){
double uw,uh,a,b,ab;
while(cin>>uw>>uh>>a>>b>>ab,uw!=0){
Circle c1(Point(0,0),sqrt(a/PI));
Circle c2(Point(0,0),sqrt(b/PI));
bool f=0;
if(c1.r<=c2.r) swap(c1,c2),f=1;
double l=max(0.0,c1.r-c2.r),r=c1.r+c2.r+EPS;
for(int k=0;k<100;k++){
double m=(l+r)/2;
c2.c.x=m;
//cout<<area(c1,c2)<<endl;
if(area(c1,c2)<=ab) r=m;
else l=m;
}
c2.c.x=l;
double EPS3=1e-4;
assert(abs(area(c1,c2)-ab)<=EPS3);
l=0,r=PI/2;
for(int k=0;k<200;k++){
double m=(l+r)/2;
Circle t=c2;
t.c=translate(c2.c,m);
if(c1.r+max(c1.r,t.c.x+t.r)<=uw) r=m;
else l=m;
}
c2.c=translate(c2.c,r);