Codeforces Edu3 E. Minimum spanning tree for each edge
Connected undirected weighted graph without self-loops and multiple edges is given. Graph contains n vertices and m edges.
For each edge (u, v) find the minimal possible weight of the spanning tree that contains the edge (u, v).
The weight of the spanning tree is the sum of weights of all edges included in spanning tree.
First line contains two integers n and m (1 ≤ n ≤ 2·105, n - 1 ≤ m ≤ 2·105) — the number of vertices and edges in graph.
Each of the next m lines contains three integers ui, vi, wi (1 ≤ ui, vi ≤ n, ui ≠ vi, 1 ≤ wi ≤ 109) — the endpoints of the i-th edge and its weight.
Print m lines. i-th line should contain the minimal possible weight of the spanning tree that contains i-th edge.
The edges are numbered from 1 to m in order of their appearing in input.
5 7
1 2 3
1 3 1
1 4 5
2 3 2
2 5 3
3 4 2
4 5 4
9
8
11
8
8
8
9
题意:给你一个n个点,m条边的无向图。对于每一条边,求包括该边的最小生成树
我们首先想到的是,求一次整图的MST后,对于每一条边(u,v),如果该边在整图的最小生成树上,答案就是MST,否则,加入的边(u,v)就会使原来的最小生成树成环,可以通过LCA确定该环,那么我们只要求出点u到LCA(u,v)路径上的最大边权和v到LCA(u,v)路径上的最大边权中的最大值mx,MST - mx + w[u,v]就是答案了
其中gx[u][i]表示节点u到其第2^i个祖先之间路径上的最大边权
#include <bits/stdc++.h> using namespace std; const int INF = 0x3f3f3f3f; const int N = 2e5 + 10; const int DEG = 20; typedef long long ll; struct edge { int v, w, next; edge() {} edge(int v, int w, int next) : v(v), w(w), next(next){} }e[N << 1]; int head[N], tot; int fa[N][DEG], deg[N]; int gx[N][DEG]; void init() { memset(head, -1, sizeof head); tot = 0; } void addedge(int u, int v, int w) { e[tot] = edge(v, w, head[u]); head[u] = tot++; } void BFS(int root) { queue<int> que; deg[root] = 0; fa[root][0] = root; gx[root][0] = 0; que.push(root); while(!que.empty()) { int tmp = que.front(); que.pop(); for(int i = 1; i < DEG; ++i) { fa[tmp][i] = fa[ fa[tmp][i - 1] ][i - 1]; gx[tmp][i] = max(gx[tmp][i - 1], gx[ fa[tmp][i - 1] ][i - 1]); // printf("[%d %d] ", tmp, gx[tmp][i]); } // puts(""); for(int i = head[tmp]; ~i; i = e[i].next) { int v = e[i].v; int w = e[i].w; if(v == fa[tmp][0]) continue; deg[v] = deg[tmp] + 1; fa[v][0] = tmp; gx[v][0] = w; que.push(v); } } } int Mu, Mv; ll LCA(int u, int v) { Mu = Mv = -1; if(deg[u] > deg[v]) swap(u, v); int hu = deg[u], hv = deg[v]; int tu = u, tv = v; for(int det = hv - hu, i = 0; det; det >>= 1, ++i) if(det & 1) { Mv = max(Mv, gx[tv][i]); tv = fa[tv][i]; } if(tu == tv) return Mv; for(int i = DEG - 1; i >= 0; --i) { if(fa[tu][i] == fa[tv][i]) continue; Mu = max(Mu, gx[tu][i]); Mv = max(Mv, gx[tv][i]); tu = fa[tu][i]; tv = fa[tv][i]; } return max(max(Mu, gx[tu][0]), max(Mv, gx[tv][0])); } int U[N], V[N], w[N], r[N], f[N]; int find(int x) { return f[x] == x ? x : f[x] = find(f[x]); } bool cmp(int a, int b) { return w[a] < w[b]; } ll MST; int n, m; void mst() { scanf("%d%d", &n, &m); for(int i = 1; i <= m; ++i) { scanf("%d%d%d", &U[i], &V[i], &w[i]); r[i] = i; f[i] = i; } sort(r + 1, r + m + 1, cmp); MST = 0; for(int i = 1; i <= m; ++i) { int id = r[i]; int fu = find(U[id]); int fv = find(V[id]); if(fu != fv) { MST += w[id]; f[ fu ] = fv; addedge(U[id], V[id], w[id]); addedge(V[id], U[id], w[id]); } } } int main() { init(); mst(); BFS(1); for(int i = 1; i <= m; ++i) { printf("%I64d\n", MST - LCA(U[i], V[i]) + w[i]); } return 0; }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧