摘要: //View Code 1 #include <iostream> 2 #include <algorithm> 3 #include <queue> 4 using namespace std; 5 const int INF = 0x3ffffff; 6 struct Node{ 7 bool operator<(Node a)const{ 8 return time > a.time; 9 } 10 int x; 11 int y; 12 int time; 13 int sudu; 14 int... 阅读全文
posted @ 2013-04-21 21:58 zx雄 阅读(206) 评论(0) 推荐(0) 编辑