摘要: 原题链接 最小生成数模板(K算法) code #include<bits/stdc++.h> using namespace std; const int N=2e5+5; const int M=5005; int father[M]; struct G{ int from,to,value; } 阅读全文
posted @ 2024-03-01 15:19 黑屿白 阅读(18) 评论(0) 推荐(0)