結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー hitonanodehitonanode
提出日時 2021-02-06 14:15:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 855 bytes
コンパイル時間 842 ms
コンパイル使用メモリ 76,596 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-02 22:24:18
合計ジャッジ時間 3,355 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,760 KB
testcase_01 AC 3 ms
5,760 KB
testcase_02 AC 3 ms
5,760 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 51 ms
7,936 KB
testcase_09 AC 24 ms
6,784 KB
testcase_10 AC 27 ms
6,912 KB
testcase_11 AC 16 ms
6,528 KB
testcase_12 AC 39 ms
7,680 KB
testcase_13 AC 49 ms
7,808 KB
testcase_14 AC 47 ms
8,064 KB
testcase_15 AC 36 ms
7,424 KB
testcase_16 AC 6 ms
6,016 KB
testcase_17 AC 6 ms
6,144 KB
testcase_18 AC 66 ms
8,704 KB
testcase_19 AC 14 ms
6,400 KB
testcase_20 AC 5 ms
6,016 KB
testcase_21 AC 34 ms
7,296 KB
testcase_22 AC 30 ms
7,168 KB
testcase_23 AC 5 ms
5,888 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 3 ms
6,016 KB
testcase_28 AC 4 ms
5,888 KB
testcase_29 AC 6 ms
6,016 KB
testcase_30 AC 6 ms
6,016 KB
testcase_31 AC 4 ms
6,016 KB
testcase_32 AC 5 ms
6,016 KB
testcase_33 AC 17 ms
7,296 KB
testcase_34 WA -
testcase_35 AC 32 ms
8,576 KB
testcase_36 AC 9 ms
6,400 KB
testcase_37 AC 50 ms
8,820 KB
testcase_38 AC 45 ms
8,712 KB
testcase_39 AC 3 ms
5,760 KB
testcase_40 AC 3 ms
5,760 KB
testcase_41 AC 3 ms
5,888 KB
testcase_42 AC 3 ms
5,760 KB
testcase_43 AC 3 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 想定 WA
#include <vector>
#include <iostream>
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);
    }

    long long ret = 1LL * N * N;

    // オーバーフローで WA になるべき
    auto f = [&N](long long x) -> int { return x * (N - x); };

    auto dfs = [&](auto self, int now, int prv) -> int {
        int subtree_size = 1;
        for (auto nxt : to[now]) {
            if (nxt != prv) {
                int tmp = self(self, nxt, now);
                ret += f(tmp);
                subtree_size += tmp;
            }
        }
        ret += f(subtree_size);
        return subtree_size;
    };
    dfs(dfs, 0, -1);
    cout << ret << '\n';
}
0