#include <iostream>#include <algorithm>#include <deque>using namespace std;struct Node { int x,y; Node(int a = 0,int b = 0):x(a),y(b){} bool operator <(const Node& n) { if (x == n.x) return y > n.y ; return x > n.x ; } };typedef struct Node SNode;stru... Read More
posted @ 2013-04-12 18:05
lingjip
Views(404)
Comments(0)
Diggs(0)

浙公网安备 33010602011771号