結果

問題 No.872 All Tree Path
ユーザー betrue12betrue12
提出日時 2019-08-30 21:51:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 255 ms / 3,000 ms
コード長 592 bytes
コンパイル時間 1,570 ms
コンパイル使用メモリ 172,040 KB
実行使用メモリ 23,712 KB
最終ジャッジ日時 2024-11-21 22:41:36
合計ジャッジ時間 4,827 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
15,448 KB
testcase_01 AC 255 ms
15,384 KB
testcase_02 AC 253 ms
15,488 KB
testcase_03 AC 190 ms
23,712 KB
testcase_04 AC 4 ms
8,100 KB
testcase_05 AC 245 ms
15,408 KB
testcase_06 AC 235 ms
15,428 KB
testcase_07 AC 230 ms
15,432 KB
testcase_08 AC 21 ms
8,832 KB
testcase_09 AC 22 ms
8,704 KB
testcase_10 AC 22 ms
8,832 KB
testcase_11 AC 20 ms
8,832 KB
testcase_12 AC 23 ms
8,704 KB
testcase_13 AC 5 ms
8,172 KB
testcase_14 AC 4 ms
8,140 KB
testcase_15 AC 5 ms
8,012 KB
testcase_16 AC 5 ms
8,184 KB
testcase_17 AC 4 ms
8,192 KB
testcase_18 AC 4 ms
8,192 KB
testcase_19 AC 4 ms
8,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int N;
vector<pair<int, int>> edges[200000];

int64_t ans = 0;
int dfs(int i, int p){
    int num = 1;
    for(auto& e : edges[i]){
        if(e.first == p) continue;
        int add = dfs(e.first, i);
        ans += 2LL * e.second * add * (N-add);
        num += add;
    }
    return num;
}

int main(){
    cin >> N;
    for(int i=0; i<N-1; i++){
        int a, b, c;
        cin >> a >> b >> c;
        edges[a-1].emplace_back(b-1, c);
        edges[b-1].emplace_back(a-1, c);
    }

    dfs(0, -1);
    cout << ans << endl;
    return 0;
}
0