結果

問題 No.827 総神童数
ユーザー ward1302ward1302
提出日時 2019-05-03 22:30:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 1,292 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 82,716 KB
実行使用メモリ 29,868 KB
最終ジャッジ日時 2024-06-10 06:42:41
合計ジャッジ時間 7,468 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,948 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 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 311 ms
29,868 KB
testcase_10 AC 103 ms
11,520 KB
testcase_11 AC 6 ms
6,940 KB
testcase_12 AC 45 ms
7,424 KB
testcase_13 AC 243 ms
25,248 KB
testcase_14 AC 11 ms
6,944 KB
testcase_15 AC 93 ms
12,032 KB
testcase_16 AC 244 ms
20,152 KB
testcase_17 AC 292 ms
24,128 KB
testcase_18 AC 124 ms
13,952 KB
testcase_19 AC 322 ms
15,480 KB
testcase_20 AC 226 ms
12,288 KB
testcase_21 AC 160 ms
9,856 KB
testcase_22 AC 253 ms
13,104 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 288 ms
14,176 KB
testcase_25 AC 210 ms
11,624 KB
testcase_26 AC 284 ms
14,084 KB
testcase_27 AC 181 ms
10,588 KB
testcase_28 AC 175 ms
10,368 KB
testcase_29 AC 138 ms
9,088 KB
testcase_30 AC 42 ms
6,940 KB
testcase_31 AC 106 ms
7,680 KB
testcase_32 AC 100 ms
7,552 KB
testcase_33 AC 313 ms
15,032 KB
testcase_34 AC 286 ms
14,148 KB
testcase_35 AC 112 ms
7,936 KB
testcase_36 AC 159 ms
9,712 KB
testcase_37 AC 210 ms
11,472 KB
testcase_38 AC 307 ms
15,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <map>
#include <utility>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
using namespace std;

#define ll long long
ll mmod=1000000007;

void dfs(vector<vector<int>> &V, int key, vector<int> &W){
    for(int i=0; i<V[key].size(); ++i){
        if(W[V[key][i]]<0){
            W[V[key][i]]=W[key]+1;
            dfs(V, V[key][i], W);
        }
    }
}
// a^n mod を計算する
ll modpow(ll a, ll n, ll mod) {
    ll res = 1;
    while (n > 0) {
        if (n & 1) res = res * a % mod;
        a = a * a % mod;
        n >>= 1;
    }
    return res;
}

// a^{-1} mod を計算する
ll modinv(ll a, ll mod) {
    return modpow(a, mod - 2, mod);
}


int main() {
	int N; cin >> N;
	vector<vector<int>> v(N+1);
	for(int i=0; i<N-1; ++i){
	    int a, b;
	    cin >> a >> b;
	    v[a].push_back(b);
	    v[b].push_back(a);
	}
	vector<int> dpt(N+1, -1), cnt(N+1, 0);
	dpt[1]=1;
	dfs(v, 1, dpt);
	for(int i=1; i<=N; ++i) ++cnt[dpt[i]];
	ll frac=1;
	for(int i=1; i<=N; ++i) frac=(frac*i)%mmod;
	ll ans=0;
	for(int i=1; i<=N; ++i){
	    ll t=(frac*modinv(i, mmod))%mmod;
	    ans=(ans+(t*cnt[i])%mmod)%mmod;
	}
	cout << ans << endl;
	//for(int i=1; i<=N; ++i) cout << dpt[i] << ' ';
	//cout << endl;
	return 0;
}
0