結果

問題 No.827 総神童数
ユーザー PachicobuePachicobue
提出日時 2019-04-11 01:58:25
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 1,074 bytes
コンパイル時間 690 ms
コンパイル使用メモリ 78,700 KB
最終ジャッジ日時 2025-01-07 01:37:53
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,824 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 172 ms
27,228 KB
testcase_10 AC 55 ms
11,008 KB
testcase_11 AC 4 ms
6,820 KB
testcase_12 AC 24 ms
6,912 KB
testcase_13 AC 127 ms
22,752 KB
testcase_14 AC 6 ms
6,820 KB
testcase_15 AC 49 ms
11,008 KB
testcase_16 AC 130 ms
19,840 KB
testcase_17 AC 155 ms
23,400 KB
testcase_18 AC 65 ms
12,928 KB
testcase_19 AC 179 ms
19,376 KB
testcase_20 AC 117 ms
15,156 KB
testcase_21 AC 87 ms
11,904 KB
testcase_22 AC 130 ms
16,168 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 151 ms
17,356 KB
testcase_25 AC 104 ms
14,184 KB
testcase_26 AC 146 ms
17,476 KB
testcase_27 AC 97 ms
12,836 KB
testcase_28 AC 95 ms
12,764 KB
testcase_29 AC 77 ms
10,880 KB
testcase_30 AC 23 ms
6,820 KB
testcase_31 AC 57 ms
9,216 KB
testcase_32 AC 55 ms
9,088 KB
testcase_33 AC 159 ms
18,880 KB
testcase_34 AC 145 ms
17,592 KB
testcase_35 AC 62 ms
9,088 KB
testcase_36 AC 85 ms
11,648 KB
testcase_37 AC 105 ms
14,240 KB
testcase_38 AC 154 ms
18,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using ull = unsigned long long;
constexpr ull M = 1000000007;
int main()
{
    std::size_t N;
    std::cin >> N;
    std::vector<ull> L(N + 1, 1), R(N + 1, 1);
    for (std::size_t i = 1; i <= N; i++) { L[i] = L[i - 1] * (ull)(i == 1 ? 1 : i - 1) % M; }
    for (std::size_t i = N; i >= 1; i--) { R[i - 1] = R[i] * (ull)(i) % M; }
    std::vector<std::vector<std::size_t>> g(N);
    for (std::size_t i = 0; i < N - 1; i++) {
        std::size_t u, v;
        std::cin >> u >> v, u--, v--;
        g[u].push_back(v), g[v].push_back(u);
    }
    std::vector<std::size_t> dnum(N + 1, 0);
    auto dfs = [&](auto&& self, const std::size_t s, const std::size_t p, const std::size_t d) -> void {
        dnum[d]++;
        for (const std::size_t to : g[s]) {
            if (to == p) { continue; }
            self(self, to, s, d + 1);
        }
    };
    dfs(dfs, 0, N, 1);
    ull ans = 0;
    for (std::size_t d = 1; d <= N; d++) { (ans += (ull)dnum[d] * (L[d] * R[d] % M) % M) %= M; }
    std::cout << ans << std::endl;
    return 0;
}
0