Codeforces#514D(三分,简单二维几何)
#include<bits/stdc++.h>using namespace std;const double eps=1e-8;int n;struct node{ double x,y;}a[1000007];long double find_r(long double x){ long double r=0; for(int i=1;i<=n;...