摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=3920View Code 1 #include <cstdio> 2 #include <cmath> 3 #include <cstring> 4 #include <algorithm> 5 using namespace std; 6 7 double d[1100000]; 8 bool vis[1100000]; 9 int n;10 struct point11 {12 double x,y;13 void input()14 {15 scanf(&
阅读全文