摘要: #include const int inf=0x3f3f3f3f; const int maxn=1e5+5; struct edge{ int u,v;//两个点 int w; //权值 Edge(int _u = 0, int _v = 0, int _w = 0): u(_u), v(_v), w(_w) {} }; int dis[maxn];//松... 阅读全文
posted @ 2018-08-25 09:12 踩在浪花上 阅读(437) 评论(0) 推荐(0)