摘要: 三角形模板 const int N = 1e5 + 50; const ld PI = acos(-1.0); const ld eps=1e-8; int sgn(ld x) { if(fabs(x)<eps)return 0; return x<0?-1:1; } struct Point { 阅读全文
posted @ 2021-06-09 19:58 LaiYiC 阅读(57) 评论(0) 推荐(0)