結果

問題 No.872 All Tree Path
ユーザー MayimgMayimg
提出日時 2019-08-31 10:03:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 130 ms / 3,000 ms
コード長 632 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 205,152 KB
実行使用メモリ 26,916 KB
最終ジャッジ日時 2024-05-03 06:32:43
合計ジャッジ時間 5,096 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
15,492 KB
testcase_01 AC 117 ms
15,464 KB
testcase_02 AC 108 ms
15,428 KB
testcase_03 AC 79 ms
26,916 KB
testcase_04 AC 4 ms
8,080 KB
testcase_05 AC 110 ms
15,452 KB
testcase_06 AC 107 ms
15,468 KB
testcase_07 AC 100 ms
15,332 KB
testcase_08 AC 11 ms
9,020 KB
testcase_09 AC 11 ms
8,968 KB
testcase_10 AC 11 ms
8,844 KB
testcase_11 AC 12 ms
8,880 KB
testcase_12 AC 12 ms
8,892 KB
testcase_13 AC 4 ms
8,080 KB
testcase_14 AC 4 ms
8,040 KB
testcase_15 AC 3 ms
8,164 KB
testcase_16 AC 3 ms
8,220 KB
testcase_17 AC 3 ms
8,228 KB
testcase_18 AC 4 ms
8,188 KB
testcase_19 AC 3 ms
8,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
long long ans = 0;
int n;
vector<pair<int, int>> g[202020];
int dfs (int cur, int par) {
  int res = 0;
  for (auto nxt : g[cur]) {
    if (nxt.first == par) continue;
    int x = dfs(nxt.first, cur);
    res += x;
    ans += 1LL * x * (n - x) * nxt.second;
  }
  return res + 1;
}
signed main() {
  ios::sync_with_stdio(false); cin.tie(0);
  cin >> n;
  for (int i = 1; i < n; i++) {
    int u, v, w;
    cin >> u >> v >> w;
    u--;
    v--;
    g[u].emplace_back(v, w);
    g[v].emplace_back(u, w);
  }
  dfs(0, -1);
  cout << ans * 2 << endl;
  return 0;
}
0