摘要: 1 #include 2 #include 3 #include 4 const int MAXN = 40010; 5 int N; 6 struct Point 7 { 8 int x; 9 bool operator< (const Point& T) const10 {11 return x < T.x;12 }13 }P[MAXN];14 15 struct Points16 {17 int x;18 }Ps[MAXN];19 20 21 bool cmp(Points a,Points b)22 {23 ret... 阅读全文
posted @ 2013-08-20 16:41 CNKylin 阅读(341) 评论(0) 推荐(0) 编辑