結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
17,500 KB
testcase_01 AC 283 ms
17,524 KB
testcase_02 AC 276 ms
17,536 KB
testcase_03 AC 200 ms
25,844 KB
testcase_04 AC 6 ms
10,296 KB
testcase_05 AC 279 ms
17,540 KB
testcase_06 AC 272 ms
17,492 KB
testcase_07 AC 279 ms
17,496 KB
testcase_08 AC 26 ms
11,016 KB
testcase_09 AC 26 ms
10,980 KB
testcase_10 AC 26 ms
10,940 KB
testcase_11 AC 26 ms
11,036 KB
testcase_12 AC 25 ms
10,956 KB
testcase_13 AC 7 ms
10,224 KB
testcase_14 AC 6 ms
10,192 KB
testcase_15 AC 6 ms
10,260 KB
testcase_16 AC 6 ms
10,280 KB
testcase_17 AC 7 ms
10,236 KB
testcase_18 AC 7 ms
10,196 KB
testcase_19 AC 5 ms
10,164 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