結果
問題 | No.872 All Tree Path |
ユーザー | ptotq |
提出日時 | 2019-08-30 22:39:50 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 203 ms / 3,000 ms |
コード長 | 1,006 bytes |
コンパイル時間 | 2,057 ms |
コンパイル使用メモリ | 172,496 KB |
実行使用メモリ | 33,664 KB |
最終ジャッジ日時 | 2024-11-22 01:18:20 |
合計ジャッジ時間 | 4,124 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
#include <bits/stdc++.h> #define REP(i, start, end) for (int i=start, i##Len=(end); i < i##Len; ++i) using ll = int64_t; using namespace std; int N; vector<vector<pair<ll, ll>>> tree; int counts[200010] = {}; int rec(int v, int parent) { counts[v] = 1; for (auto p: tree[v]) { if (p.first == parent) continue; counts[v] += rec(p.first, v); } return counts[v]; } ll solve(int v, int parent) { ll total = 0; for (auto p : tree[v]) { if (p.first == parent) continue; total += p.second * counts[p.first] * (N-counts[p.first]) * 2 + solve(p.first, v); } return total; } int main() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); cin >> N; tree = vector<vector<pair<ll, ll>>>(N+1); ll u, v, w; REP(i, 0, N-1) { cin >> u >> v >> w; tree[u].emplace_back(v, w); tree[v].emplace_back(u, w); } rec(1, 0); cout << solve(1, 0) << endl; return 0; }