結果

問題 No.1103 Directed Length Sum
ユーザー けーむけーむ
提出日時 2020-07-20 14:41:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,088 bytes
コンパイル時間 1,632 ms
コンパイル使用メモリ 171,664 KB
実行使用メモリ 159,488 KB
最終ジャッジ日時 2024-06-06 05:19:59
合計ジャッジ時間 10,725 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 235 ms
89,052 KB
testcase_04 AC 461 ms
57,552 KB
testcase_05 AC 872 ms
97,508 KB
testcase_06 AC 265 ms
38,656 KB
testcase_07 AC 39 ms
11,776 KB
testcase_08 AC 62 ms
16,288 KB
testcase_09 AC 22 ms
8,448 KB
testcase_10 AC 103 ms
21,036 KB
testcase_11 AC 513 ms
62,704 KB
testcase_12 AC 267 ms
39,036 KB
testcase_13 AC 183 ms
21,632 KB
testcase_14 AC 16 ms
7,296 KB
testcase_15 AC 190 ms
30,976 KB
testcase_16 AC 590 ms
70,036 KB
testcase_17 AC 630 ms
72,864 KB
testcase_18 AC 112 ms
20,840 KB
testcase_19 AC 526 ms
64,028 KB
testcase_20 AC 27 ms
9,728 KB
testcase_21 AC 62 ms
14,868 KB
testcase_22 AC 406 ms
52,992 KB
testcase_23 AC 211 ms
32,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i, n) for(ll i = 0, i##_len = (n); i < i##_len; i++)
#define reps(i, s, n) for(ll i = (s), i##_len = (n); i < i##_len; i++)
#define rrep(i, n) for(ll i = (n) - 1; i >= 0; i--)
#define rreps(i, e, n) for(ll i = (n) - 1; i >= (e); i--)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define sz(x) ((ll)(x).size())
#define len(x) ((ll)(x).length())
#define endl "\n"

vector<vector<ll>> g, rev;
ll ans = 0;

ll dfs(ll v, ll p = 1) {
    ll cnt = 0;
    for(auto &x : g[v]) {
        cnt += dfs(x, p + 1);
    }
    ans += p * cnt;
    return cnt + 1;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    // ifstream in("input.txt");
    // cin.rdbuf(in.rdbuf());
    ll n;
    cin >> n;
    g.resize(n);
    rev.resize(n);
    rep(i, n - 1) {
        ll a, b;
        cin >> a >> b;
        a--; b--;
        g[a].push_back(b);
        rev[b].push_back(a);
    }
    rep(i, n) {
        if (sz(rev[i]) == 0) dfs(i);
    }
    cout << ans << endl;
    return 0;
}
0