摘要:
1 /* 2 * 判断一堆点组成的形状是否为对称的 3 */ 4 5 #include <cmath> 6 #include <cstdio> 7 #include <cstdlib> 8 #include <iostream> 9 10 using namespace std;11 12 const int N = 10005;13 const double EPS = 1e-8;14 15 struct point {16 double x, y;17 }p[N], s;18 int used[N];19 20 int Rlcmp(doubl 阅读全文
posted @ 2012-06-03 08:59
Try86
阅读(218)
评论(0)
推荐(0)
浙公网安备 33010602011771号