摘要: #include <bits/stdc++.h> using namespace std; const double EPS = 1e-8; const int N = 1e5+10; struct Point{ double x, y; }; int n; Point p[N]; bool equ 阅读全文
posted @ 2021-03-09 14:55 popozyl 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 这两天准备学一点计算几何,先来一发基础的计算几何板子 #include <bits/stdc++.h> using namespace std; #define EPS (1e-8) bool equals(double x, double y){ return fabs(x-y) < EPS; } 阅读全文
posted @ 2021-03-09 09:52 popozyl 阅读(47) 评论(0) 推荐(0) 编辑