結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー hitonanodehitonanode
提出日時 2021-02-06 15:18:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 1,307 bytes
コンパイル時間 763 ms
コンパイル使用メモリ 81,116 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-07-03 00:13:25
合計ジャッジ時間 3,399 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,760 KB
testcase_01 AC 4 ms
5,760 KB
testcase_02 AC 3 ms
5,760 KB
testcase_03 AC 87 ms
10,240 KB
testcase_04 AC 80 ms
10,368 KB
testcase_05 AC 80 ms
10,400 KB
testcase_06 AC 89 ms
10,496 KB
testcase_07 AC 88 ms
10,496 KB
testcase_08 AC 53 ms
8,704 KB
testcase_09 AC 28 ms
7,040 KB
testcase_10 AC 30 ms
7,168 KB
testcase_11 AC 19 ms
6,528 KB
testcase_12 AC 46 ms
8,064 KB
testcase_13 AC 50 ms
8,668 KB
testcase_14 AC 54 ms
8,956 KB
testcase_15 AC 42 ms
7,936 KB
testcase_16 AC 7 ms
6,144 KB
testcase_17 AC 6 ms
6,144 KB
testcase_18 AC 72 ms
9,856 KB
testcase_19 AC 15 ms
6,552 KB
testcase_20 AC 5 ms
5,760 KB
testcase_21 AC 39 ms
7,936 KB
testcase_22 AC 33 ms
7,484 KB
testcase_23 AC 5 ms
6,016 KB
testcase_24 AC 5 ms
6,016 KB
testcase_25 AC 4 ms
5,888 KB
testcase_26 AC 5 ms
6,016 KB
testcase_27 AC 4 ms
5,888 KB
testcase_28 AC 3 ms
6,144 KB
testcase_29 AC 6 ms
6,016 KB
testcase_30 AC 5 ms
6,016 KB
testcase_31 AC 4 ms
5,888 KB
testcase_32 AC 5 ms
6,144 KB
testcase_33 AC 18 ms
7,936 KB
testcase_34 AC 77 ms
15,616 KB
testcase_35 AC 33 ms
9,728 KB
testcase_36 AC 9 ms
6,528 KB
testcase_37 AC 56 ms
10,488 KB
testcase_38 AC 47 ms
9,976 KB
testcase_39 AC 3 ms
5,888 KB
testcase_40 AC 3 ms
5,760 KB
testcase_41 AC 3 ms
5,760 KB
testcase_42 AC 3 ms
5,760 KB
testcase_43 AC 2 ms
5,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<int> to[100000];

int main() {

    int N;
    cin >> N;

    for (int i = 0; i < N - 1; i++) {
        int a, b;
        cin >> a >> b;
        a--, b--;
        to[a].push_back(b);
        to[b].push_back(a);
    }

    vector<long long> dpx(N), dpxy(N);

    auto dfs1 = [&](auto self, int now, int prv) -> void {
        for (auto nxt : to[now]) {
            if (nxt != prv) {
                self(self, nxt, now);
                dpx[now] += dpx[nxt];
                dpxy[now] += dpxy[nxt];
            }
        }
        dpx[now] += 1;
        dpxy[now] += dpx[now];
    };
    dfs1(dfs1, 0, -1);

    long long ret = 0;
    auto dfs2 = [&](auto self, int now, int prv, long long dpxpar, long long dpxypar) -> void {
        ret += dpxy[now] + dpxypar + dpxpar;
        for (auto nxt : to[now]) {
            if (nxt != prv) {
                dpxpar += dpx[nxt];
                dpxypar += dpxy[nxt];
            }
        }

        for (auto nxt : to[now]) {
            if (nxt != prv) {
                long long a = dpxpar - dpx[nxt] + 1;
                long long b = dpxypar - dpxy[nxt] + a;
                self(self, nxt, now, a, b);
            }
        }
    };
    dfs2(dfs2, 0, -1, 0, 0);

    cout << ret << '\n';
}
0