結果

問題 No.872 All Tree Path
ユーザー Y17Y17
提出日時 2019-08-30 23:05:52
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 266 ms / 3,000 ms
コード長 1,058 bytes
コンパイル時間 1,231 ms
コンパイル使用メモリ 162,300 KB
実行使用メモリ 50,176 KB
最終ジャッジ日時 2024-05-01 20:19:47
合計ジャッジ時間 4,347 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 262 ms
31,232 KB
testcase_01 AC 257 ms
31,232 KB
testcase_02 AC 256 ms
31,360 KB
testcase_03 AC 213 ms
50,176 KB
testcase_04 AC 8 ms
12,672 KB
testcase_05 AC 266 ms
31,232 KB
testcase_06 AC 252 ms
31,360 KB
testcase_07 AC 262 ms
31,360 KB
testcase_08 AC 27 ms
14,592 KB
testcase_09 AC 27 ms
14,720 KB
testcase_10 AC 26 ms
14,592 KB
testcase_11 AC 25 ms
14,592 KB
testcase_12 AC 26 ms
14,720 KB
testcase_13 AC 7 ms
12,672 KB
testcase_14 AC 8 ms
12,672 KB
testcase_15 AC 8 ms
12,800 KB
testcase_16 AC 8 ms
12,800 KB
testcase_17 AC 7 ms
12,672 KB
testcase_18 AC 7 ms
12,544 KB
testcase_19 AC 7 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define int long long

vector<pair<int, int>> graph[200010];
vector<pair<int, int>> tree[200010];


int used[200010] = {};

void make_tree(int idx){
    used[idx] = 1;
    for(int i = 0;i < graph[idx].size();i++){
        int child = graph[idx][i].first;
        if(!used[child]){
            tree[idx].push_back({child, graph[idx][i].second});
            make_tree(child);

        }
    }
}

int memo[200010];
int n;

int dp(int idx){
    int ans = 0;
    int num = 1;

    for(int i = 0;i < tree[idx].size();i++){
        int child = tree[idx][i].first;
        ans += dp(child);
        num += memo[child];
        ans += (memo[child] * (n-memo[child]) * tree[idx][i].second) * 2;
    }

    memo[idx] = num;
    return ans;
}

signed main(){
    cin >> n;

    for(int i = 0;i < n-1;i++){
        int a, b, c;
        cin >> a >> b >> c;
        a--;
        b--;
        graph[a].push_back({b, c});
        graph[b].push_back({a, c});
    }

    make_tree(0);

    cout << dp(0) << endl;
    return 0;
}
0