#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(391) Comments(0) Diggs(0) Edit