結果

問題 No.872 All Tree Path
ユーザー E31415926E31415926
提出日時 2019-08-30 22:27:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 287 ms / 3,000 ms
コード長 751 bytes
コンパイル時間 1,928 ms
コンパイル使用メモリ 171,132 KB
実行使用メモリ 29,992 KB
最終ジャッジ日時 2024-11-22 00:41:22
合計ジャッジ時間 5,454 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
18,328 KB
testcase_01 AC 283 ms
18,188 KB
testcase_02 AC 285 ms
18,232 KB
testcase_03 AC 201 ms
29,992 KB
testcase_04 AC 5 ms
8,160 KB
testcase_05 AC 287 ms
18,300 KB
testcase_06 AC 286 ms
18,376 KB
testcase_07 AC 283 ms
18,332 KB
testcase_08 AC 25 ms
9,360 KB
testcase_09 AC 24 ms
9,140 KB
testcase_10 AC 25 ms
9,184 KB
testcase_11 AC 24 ms
9,180 KB
testcase_12 AC 25 ms
9,132 KB
testcase_13 AC 4 ms
8,132 KB
testcase_14 AC 5 ms
8,104 KB
testcase_15 AC 5 ms
8,088 KB
testcase_16 AC 6 ms
8,020 KB
testcase_17 AC 5 ms
8,032 KB
testcase_18 AC 5 ms
8,168 KB
testcase_19 AC 5 ms
8,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

#define int long long
using namespace std;
#define rep(i, n) for(int i=0;i<(n);++i)
typedef pair<int, int> pii;
const int INF = 1l << 60;
#define u_b upper_bound
#define l_b lower_bound

int N;
vector<pii> G[200200];
int Ans;

int dfs(int v, int p) {
    int children = 0;
    for (pii edge:G[v]) {
        if (edge.first == p)continue;
        int ch = dfs(edge.first, v) + 1;
        Ans += edge.second * (N - ch) * ch;
        children += ch;
    }
    return children;
}

signed main() {
    cin >> N;
    rep(i, N - 1) {
        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 << 2 * Ans << endl;
    return 0;
}
0