摘要: #include<stdlib.h>#include<string.h>#include<stdio.h>#include<math.h>#include<queue>#define MAXN 1005using namespace std;int root[MAXN];struct edge{ int head; int tail; int cost; friend bool operator< (const edge &e1,const edge &e2){ return e1.cost > e2.co 阅读全文
posted @ 2013-04-30 01:26 kahreman 阅读(288) 评论(0) 推荐(0) 编辑