結果

問題 No.827 総神童数
ユーザー chocoruskchocorusk
提出日時 2019-05-03 21:46:27
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 1,535 bytes
コンパイル時間 1,085 ms
コンパイル使用メモリ 102,360 KB
実行使用メモリ 29,612 KB
最終ジャッジ日時 2024-06-10 06:33:48
合計ジャッジ時間 5,008 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
10,440 KB
testcase_01 AC 4 ms
11,596 KB
testcase_02 AC 3 ms
10,256 KB
testcase_03 AC 2 ms
11,728 KB
testcase_04 AC 3 ms
11,596 KB
testcase_05 AC 2 ms
11,724 KB
testcase_06 AC 2 ms
11,724 KB
testcase_07 AC 3 ms
10,748 KB
testcase_08 AC 3 ms
10,276 KB
testcase_09 AC 156 ms
29,612 KB
testcase_10 AC 52 ms
16,588 KB
testcase_11 AC 6 ms
10,900 KB
testcase_12 AC 27 ms
13,080 KB
testcase_13 AC 128 ms
27,164 KB
testcase_14 AC 7 ms
10,964 KB
testcase_15 AC 50 ms
16,660 KB
testcase_16 AC 123 ms
23,708 KB
testcase_17 AC 147 ms
25,888 KB
testcase_18 AC 62 ms
18,716 KB
testcase_19 AC 157 ms
21,132 KB
testcase_20 AC 112 ms
18,560 KB
testcase_21 AC 82 ms
17,192 KB
testcase_22 AC 125 ms
19,268 KB
testcase_23 AC 5 ms
10,640 KB
testcase_24 AC 146 ms
18,040 KB
testcase_25 AC 102 ms
16,536 KB
testcase_26 AC 137 ms
19,724 KB
testcase_27 AC 87 ms
15,956 KB
testcase_28 AC 88 ms
16,948 KB
testcase_29 AC 71 ms
16,776 KB
testcase_30 AC 23 ms
12,648 KB
testcase_31 AC 58 ms
16,324 KB
testcase_32 AC 52 ms
14,248 KB
testcase_33 AC 156 ms
20,416 KB
testcase_34 AC 141 ms
18,028 KB
testcase_35 AC 55 ms
14,248 KB
testcase_36 AC 76 ms
17,124 KB
testcase_37 AC 98 ms
16,328 KB
testcase_38 AC 158 ms
20,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
const ll MOD=1e9+7;
ll powmod(ll a, ll k){
    ll ap=a, ans=1;
    while(k){
        if(k&1){
            ans*=ap;
            ans%=MOD;
        }
        ap=ap*ap;
        ap%=MOD;
        k>>=1;
    }
    return ans;
}
ll inv(ll a){
	return powmod(a, MOD-2);
}
ll f[1500001], invf[1500001];
void fac(int n){
    f[0]=1;
    for(ll i=1; i<=n; i++) f[i]=f[i-1]*i%MOD;
    invf[n]=inv(f[n]);
    for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1)%MOD;
}
ll comb(int x, int y){
    if(x<y) return 0;
    return f[x]*invf[y]%MOD*invf[x-y]%MOD;
}
vector<int> g[200020];
int d[200020];
bool used[200020];
void dfs(int x){
    used[x]=1;
    for(auto y:g[x]){
        if(!used[y]){
            d[y]=d[x]+1;
            dfs(y);
        }
    }
}
int main()
{
    int n; cin>>n;
    for(int i=0; i<n-1; i++){
        int u, v; cin>>u>>v; u--; v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    d[0]=1;
    dfs(0);
    fac(n);
    ll ans=0;
    for(int i=0; i<n; i++){
        ans+=comb(n, d[i])*f[n-d[i]]%MOD*f[d[i]-1];
        ans%=MOD;
    }
    cout<<ans<<endl;
    return 0;
}
0