摘要: dijkstra 1 const int inf=0x3f3f3f3f; 2 const int maxv=1010; 3 const int maxe=1010; 4 5 struct Edge 6 { 7 int u,v,w; 8 int nex; 9 }e[maxe<<1]; 10 int h 阅读全文
posted @ 2017-07-23 13:14 yijiull 阅读(204) 评论(0) 推荐(0) 编辑