摘要: 最小生成树板子 #include <iostream> #include <cstdio> #include <algorithm> using namespace std; struct edge{ int u, v, w; }graph[20005]; inline int read() { i 阅读全文
posted @ 2020-09-21 16:31 SD!LTF 阅读(165) 评论(0) 推荐(0) 编辑