結果

問題 No.872 All Tree Path
ユーザー 37zigen37zigen
提出日時 2019-08-30 23:40:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 783 bytes
コンパイル時間 734 ms
コンパイル使用メモリ 70,624 KB
実行使用メモリ 30,392 KB
最終ジャッジ日時 2024-11-22 04:31:25
合計ジャッジ時間 4,026 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 5 ms
8,448 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 6 ms
8,576 KB
testcase_14 AC 4 ms
8,448 KB
testcase_15 AC 5 ms
8,320 KB
testcase_16 AC 5 ms
8,576 KB
testcase_17 AC 4 ms
8,448 KB
testcase_18 AC 4 ms
8,448 KB
testcase_19 AC 4 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

const int MAXN = 212345;
std::vector<int> g[MAXN];
int es[MAXN][3];
int sz[MAXN];

void dfs(int cur, int par) {
  sz[cur] = 1;
  for (int dst: g[cur]) {
    if (dst == par) continue;
    dfs(dst, cur);
    sz[cur] += sz[dst];
  }
}

int main() {
  int N;
  std::cin >> N;
  for (int i = 0; i < N - 1; ++i) {
    int u, v, w;
    std::cin >> u >> v >> w;
    --u;
    --v;
    es[i][0] = u;
    es[i][1] = v;
    es[i][2] = w;
    g[u].push_back(v);
    g[v].push_back(u);
  }
  dfs(0, -1);
  long long ans = 0;
  for (int i = 0; i < N - 1; ++i) {
    int sz0 = sz[es[i][0]];
    int sz1 = sz[es[i][1]];
    if (sz0 > sz1) ans += sz1 * (N - sz1) * es[i][2];
    else ans += sz0 * (N - sz0) * es[i][2];
  }
  std::cout << ans * 2 << std::endl;
}
0