結果

問題 No.872 All Tree Path
ユーザー hedwig100hedwig100
提出日時 2020-04-14 12:52:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 853 bytes
コンパイル時間 1,691 ms
コンパイル使用メモリ 173,824 KB
実行使用メモリ 29,764 KB
最終ジャッジ日時 2024-10-01 16:56:50
合計ジャッジ時間 4,706 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 4 ms
7,936 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 4 ms
7,968 KB
testcase_14 AC 4 ms
7,960 KB
testcase_15 AC 4 ms
7,972 KB
testcase_16 AC 4 ms
7,884 KB
testcase_17 AC 4 ms
7,900 KB
testcase_18 AC 4 ms
7,936 KB
testcase_19 AC 5 ms
7,936 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<P>> G(MAXN);

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

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