結果

問題 No.827 総神童数
ユーザー kappybarkappybar
提出日時 2020-04-14 15:12:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 997 bytes
コンパイル時間 1,964 ms
コンパイル使用メモリ 172,756 KB
実行使用メモリ 40,064 KB
最終ジャッジ日時 2024-10-01 17:00:49
合計ジャッジ時間 7,388 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
25,216 KB
testcase_01 AC 18 ms
25,088 KB
testcase_02 AC 20 ms
25,216 KB
testcase_03 AC 18 ms
25,344 KB
testcase_04 AC 17 ms
25,088 KB
testcase_05 AC 20 ms
25,216 KB
testcase_06 AC 19 ms
25,216 KB
testcase_07 AC 18 ms
25,344 KB
testcase_08 AC 19 ms
25,088 KB
testcase_09 AC 197 ms
40,064 KB
testcase_10 AC 76 ms
29,696 KB
testcase_11 AC 21 ms
25,600 KB
testcase_12 AC 44 ms
27,520 KB
testcase_13 AC 159 ms
37,504 KB
testcase_14 AC 26 ms
25,728 KB
testcase_15 AC 74 ms
30,080 KB
testcase_16 AC 160 ms
34,176 KB
testcase_17 AC 183 ms
36,736 KB
testcase_18 AC 89 ms
31,104 KB
testcase_19 AC 196 ms
31,488 KB
testcase_20 AC 149 ms
29,824 KB
testcase_21 AC 104 ms
28,544 KB
testcase_22 AC 157 ms
30,080 KB
testcase_23 AC 19 ms
25,216 KB
testcase_24 AC 164 ms
30,720 KB
testcase_25 AC 129 ms
29,440 KB
testcase_26 AC 174 ms
30,720 KB
testcase_27 AC 115 ms
28,928 KB
testcase_28 AC 116 ms
28,800 KB
testcase_29 AC 93 ms
28,032 KB
testcase_30 AC 39 ms
26,112 KB
testcase_31 AC 73 ms
27,648 KB
testcase_32 AC 70 ms
27,392 KB
testcase_33 AC 191 ms
31,232 KB
testcase_34 AC 177 ms
30,592 KB
testcase_35 AC 76 ms
27,520 KB
testcase_36 AC 110 ms
28,288 KB
testcase_37 AC 129 ms
29,440 KB
testcase_38 AC 180 ms
30,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
using ll =  long long ;
using P = pair<int,int> ;
const ll INF = 1e14;
const int MOD = 1000000007;
int n = 200005;
vector<vector<int>> tree(n,vector<int>());
vector<ll> depth(n,0);

void dfs(int i,int p=-1,int d=0){
    depth[i] = d;
    for(int c:tree[i]){
        if(c==p) continue;
        dfs(c,i,d+1);
    }
}

const int MAX = 1000000;
long long fac[MAX], finv[MAX], inv[MAX];


void init() {
    fac[0] = fac[1] = 1;
    inv[1] = 1;
    for (int i = 2; i < MAX; i++){
        fac[i] = fac[i - 1] * i % MOD;
        inv[i] = MOD - inv[MOD%i] * (MOD / i) % MOD;
    }
}

int main(){
    init();
    cin >> n;
    rep(i,n-1){
        int a,b;
        cin >> a >> b;
        --a;--b;
        tree[a].push_back(b);
        tree[b].push_back(a);
    }
    dfs(0);
    ll ans = 0;
    rep(i,n){
        ans = (ans + inv[depth[i]+1])%MOD;
    }
    ans = (ans * fac[n])%MOD;
    cout << ans << endl;
    return 0;
}
0