1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
| #include <cstdio> #include <algorithm> using namespace std; typedef long long LL; const int N = 5e5 + 10, M = 1e6 + 10; int n, st; LL ans, d[N]; int idx, hd[N], nxt[M], edg[M], wt[M]; void add(int a, int b, int c) { nxt[++idx] = hd[a]; hd[a] = idx; edg[idx] = b; wt[idx] = c; } void dfs(int x, int fa) { for (int i = hd[x]; ~i; i = nxt[i]) if (edg[i] != fa) { dfs(edg[i], x); d[x] = max(d[x], d[edg[i]] + wt[i]); } for (int i = hd[x]; ~i; i = nxt[i]) if (edg[i] != fa) ans += d[x] - (d[edg[i]] + wt[i]); } int main() { scanf("%d%d", &n, &st); for (int i = 1; i <= n; i++) hd[i] = -1; for (int i = 1, a, b, c; i < n; i++) { scanf("%d%d%d", &a, &b, &c); add(a, b, c); add(b, a, c); } dfs(st, 0); printf("%d", ans); return 0; }
|
Gitalk 加载中 ...