摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #define N 10000 7 using namespace std; 8 struct EDGE 9 { 10 int to;//终点 11 int cost;//边的权值 12 }; 13 vectorG[N];//G[i]中i表示出发点 ... 阅读全文
posted @ 2018-10-11 19:02 左手边五十米 阅读(1789) 评论(0) 推荐(2) 编辑