結果

問題 No.827 総神童数
ユーザー rpy3cpprpy3cpp
提出日時 2019-05-03 23:43:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 2,093 bytes
コンパイル時間 1,909 ms
コンパイル使用メモリ 175,808 KB
実行使用メモリ 17,720 KB
最終ジャッジ日時 2024-06-10 07:09:48
合計ジャッジ時間 6,182 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 159 ms
17,608 KB
testcase_10 AC 49 ms
8,448 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 20 ms
6,940 KB
testcase_13 AC 123 ms
14,948 KB
testcase_14 AC 6 ms
6,940 KB
testcase_15 AC 47 ms
7,808 KB
testcase_16 AC 117 ms
14,976 KB
testcase_17 AC 142 ms
17,132 KB
testcase_18 AC 56 ms
9,216 KB
testcase_19 AC 169 ms
17,720 KB
testcase_20 AC 117 ms
13,924 KB
testcase_21 AC 82 ms
11,136 KB
testcase_22 AC 144 ms
14,848 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 158 ms
16,072 KB
testcase_25 AC 104 ms
13,048 KB
testcase_26 AC 153 ms
16,172 KB
testcase_27 AC 87 ms
11,764 KB
testcase_28 AC 91 ms
11,648 KB
testcase_29 AC 66 ms
9,984 KB
testcase_30 AC 20 ms
6,944 KB
testcase_31 AC 54 ms
8,576 KB
testcase_32 AC 52 ms
8,448 KB
testcase_33 AC 166 ms
17,376 KB
testcase_34 AC 148 ms
16,060 KB
testcase_35 AC 52 ms
8,704 KB
testcase_36 AC 80 ms
10,956 KB
testcase_37 AC 108 ms
13,056 KB
testcase_38 AC 165 ms
17,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
long long mod = 1e9+7;

long long pow_mod(long long b, long long p, long long mod = 1'000'000'007){
    long long ret = 1;
    while (p){
        if (p & 1) ret = (ret * b) % mod;
        b = (b * b) % mod;
        p >>= 1;
    }
    return ret;
}

class ModuloMath{
private:
    long long N;
    long long mod;
public:
    vector<long long> fac;
    vector<long long> invfac;
    ModuloMath(long long N, long long mod = 1'000'000'007): N{N}, mod{mod}, fac(N + 1, 1), invfac(N + 1, 1){
        for (long long i = 1; i <= N; ++i) fac[i] = (fac[i - 1] * i) % mod;
        invfac[N] = pow_mod(fac[N], mod - 2, mod);
        for (long long i = N; i != 1; --i) invfac[i - 1] = (invfac[i] * i) % mod;
    }
    long long nCr(long long n, long long r){return (r > n or r < 0) ? 0 : (fac[n] * invfac[n - r] % mod * invfac[r] % mod);}
    long long nPr(long long n, long long r){return (r > n or r < 0) ? 0 : (fac[n] * invfac[n - r] % mod);}
    long long nHr(long long n, long long r){return nCr(n + r - 1, r);}
};

void fill_depth(int N, const vector<vector<int>> &Es, vector<int> &depth){
    depth[0] = 0;
    vector<int> pool = {0};
    vector<int> new_pool;
    int d = 0;
    while (pool.size() >= 1){
        ++d;
        new_pool.clear();
        for (auto p : pool){
            for (auto q : Es[p]){
                if (depth[q] != -1) continue;
                depth[q] = d;
                new_pool.push_back(q);
            }
        }
        swap(new_pool, pool);
    }
    return;
}

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N;
    cin >> N;
    ModuloMath mm(N + 1);
    vector<vector<int>> Es(N, vector<int>());
    for (int i = 1; i < N; ++i){
        int u, v;
        cin >> u >> v;
        Es[u - 1].push_back(v - 1);
        Es[v - 1].push_back(u - 1);
    }
    vector<int> depth(N, -1);
    fill_depth(N, Es, depth);
    long long f = mm.fac[N];
    long long ans = 0;
    for (auto d : depth){
        (ans += (f * pow_mod(d + 1, mod-2)) % mod) %= mod;
    }
    cout << ans << endl;
    return 0;
}

0