結果

問題 No.872 All Tree Path
ユーザー face4face4
提出日時 2019-08-30 22:29:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 302 ms / 3,000 ms
コード長 926 bytes
コンパイル時間 729 ms
コンパイル使用メモリ 75,324 KB
実行使用メモリ 25,864 KB
最終ジャッジ日時 2024-05-01 18:50:16
合計ジャッジ時間 4,183 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
17,424 KB
testcase_01 AC 297 ms
17,608 KB
testcase_02 AC 302 ms
17,512 KB
testcase_03 AC 202 ms
25,864 KB
testcase_04 AC 7 ms
10,220 KB
testcase_05 AC 296 ms
17,380 KB
testcase_06 AC 302 ms
17,444 KB
testcase_07 AC 295 ms
17,560 KB
testcase_08 AC 26 ms
10,968 KB
testcase_09 AC 25 ms
10,932 KB
testcase_10 AC 26 ms
10,928 KB
testcase_11 AC 26 ms
11,024 KB
testcase_12 AC 26 ms
11,076 KB
testcase_13 AC 6 ms
10,320 KB
testcase_14 AC 7 ms
10,276 KB
testcase_15 AC 6 ms
10,360 KB
testcase_16 AC 7 ms
10,280 KB
testcase_17 AC 7 ms
10,204 KB
testcase_18 AC 7 ms
10,340 KB
testcase_19 AC 6 ms
10,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
using namespace std;

vector<pair<int,int>> v[200000];
vector<int> child(200000, 0), par(200000, 0), dep(200000, 0);

int dfs(int pos, int bef){
    dep[pos] = bef==-1 ? 0 : dep[bef]+1;
    par[pos] = bef;
    child[pos] = 1;
    for(auto p : v[pos]){
        if(p.first != par[pos]){
            child[pos] += dfs(p.first, pos);
        }
    }
    return child[pos];
}

typedef long long ll;

int main(){
    int n;
    cin >> n;
    for(int i = 0; i < n-1; i++){
        int a, b, c;
        cin >> a >> b >> c;
        a--, b--;
        v[a].push_back({b, c});
        v[b].push_back({a, c});
    }
    dfs(0, -1);
    ll ans = 0;
    for(int i = 0; i < n; i++){
        for(auto p : v[i]){
            ll num = (dep[i] > dep[p.first] ? child[i] : child[p.first]);
            ans += (ll)p.second * num * (n-num);
        }
    }
    cout << ans << endl;
    return 0;
}
0