2009年5月9日

pku 1054 二分

摘要: #include <iostream>#include <algorithm>using namespace std;int n, m, t;class Point{public: int x, y; bool operator<(const Point &b) { if (x == b.x) { return y < b.y; } else { ret... 阅读全文

posted @ 2009-05-09 13:42 ZAFU_VA 阅读(230) 评论(0) 推荐(0)

导航