【凸包模板】POJ3348 Cows
【题目描述】
传送门
【代码】
凸包模板
#include<bits/stdc++.h>
using namespace std;
const int N=1e5+10;
struct Point{
double x,y;
}a[N],s[N];
int n,top=1;
double ans=0,t;
inline double check(Point a1,Point a...
原创
2020-02-10 13:56:02 ·
130 阅读 ·
0 评论