就是求桥而已,但是坑点很多。求出权值最小的桥,然后输出其权值。但是如果权值为零,我们仍要派一名士兵。另外如果图本身就不连通,我们优先输出0 代码如下: #include<iostream> #include<algorithm> using namespace std; const int max_m = 1e6 + 100; const int max_n = 1e3 + 100; struct edge { int to, rev, next, cost; }E[max_m << 1]; int head[max_n]; int cnt = 1;...