結果

問題 No.872 All Tree Path
ユーザー hedwig100hedwig100
提出日時 2020-04-14 13:03:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 253 ms / 3,000 ms
コード長 848 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 173,044 KB
実行使用メモリ 32,912 KB
最終ジャッジ日時 2024-10-01 16:57:25
合計ジャッジ時間 5,161 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 253 ms
18,052 KB
testcase_01 AC 253 ms
18,176 KB
testcase_02 AC 251 ms
18,076 KB
testcase_03 AC 200 ms
32,912 KB
testcase_04 AC 4 ms
7,924 KB
testcase_05 AC 253 ms
18,080 KB
testcase_06 AC 251 ms
18,056 KB
testcase_07 AC 251 ms
18,160 KB
testcase_08 AC 21 ms
8,900 KB
testcase_09 AC 23 ms
8,884 KB
testcase_10 AC 22 ms
9,000 KB
testcase_11 AC 23 ms
9,056 KB
testcase_12 AC 23 ms
8,888 KB
testcase_13 AC 4 ms
7,880 KB
testcase_14 AC 4 ms
7,900 KB
testcase_15 AC 4 ms
7,944 KB
testcase_16 AC 4 ms
7,960 KB
testcase_17 AC 3 ms
7,896 KB
testcase_18 AC 4 ms
7,880 KB
testcase_19 AC 5 ms
7,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (n); i ++)
using namespace std;
typedef long long ll;
typedef pair<ll,ll> PL;
typedef pair<int,int> P;
const int INF = 1e9;
const ll MOD = 1e9 + 7;
const vector<int> dy = {-1,0,1,0};
const vector<int> dx = {0,1,0,-1};

const int MAXN = 200005;
vector<vector<PL>> G(MAXN);

ll ans = 0;
ll dfs(ll i,ll n,ll p = -1) {
    ll ret = 1;
    for (PL pa:G[i]) {
        ll e = pa.first;
        ll c = pa.second;
        if (e == p) continue;
        ll tmp = dfs(e,n,i);
        ans += 2 * tmp * (n - tmp) * c;
        ret += tmp;
    }
    return ret;
}

int main() {
    ll n; cin >> n;
    rep(_,n - 1) {
        int a,b,c; cin >> a >> b >> c;
        a --; b--;
        G[a].push_back(PL(b,c));
        G[b].push_back(PL(a,c));
    }
    dfs(0,n);
    cout << ans <<  endl;
    return 0;
}
0