結果

問題 No.827 総神童数
ユーザー gazellegazelle
提出日時 2019-05-03 23:10:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 2,504 bytes
コンパイル時間 1,045 ms
コンパイル使用メモリ 125,300 KB
実行使用メモリ 34,884 KB
最終ジャッジ日時 2024-06-10 07:06:32
合計ジャッジ時間 5,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
12,624 KB
testcase_01 AC 11 ms
12,624 KB
testcase_02 AC 11 ms
12,652 KB
testcase_03 AC 11 ms
12,664 KB
testcase_04 AC 10 ms
12,564 KB
testcase_05 AC 10 ms
12,504 KB
testcase_06 AC 10 ms
12,652 KB
testcase_07 AC 10 ms
12,600 KB
testcase_08 AC 11 ms
12,568 KB
testcase_09 AC 163 ms
34,884 KB
testcase_10 AC 62 ms
19,380 KB
testcase_11 AC 13 ms
12,928 KB
testcase_12 AC 33 ms
16,092 KB
testcase_13 AC 132 ms
31,012 KB
testcase_14 AC 15 ms
13,312 KB
testcase_15 AC 59 ms
19,840 KB
testcase_16 AC 139 ms
26,912 KB
testcase_17 AC 170 ms
30,208 KB
testcase_18 AC 75 ms
21,336 KB
testcase_19 AC 169 ms
23,280 KB
testcase_20 AC 125 ms
20,444 KB
testcase_21 AC 91 ms
18,360 KB
testcase_22 AC 132 ms
21,352 KB
testcase_23 AC 12 ms
12,652 KB
testcase_24 AC 158 ms
22,088 KB
testcase_25 AC 119 ms
19,804 KB
testcase_26 AC 165 ms
22,180 KB
testcase_27 AC 101 ms
18,964 KB
testcase_28 AC 101 ms
19,044 KB
testcase_29 AC 81 ms
17,664 KB
testcase_30 AC 30 ms
14,336 KB
testcase_31 AC 66 ms
16,472 KB
testcase_32 AC 60 ms
16,552 KB
testcase_33 AC 169 ms
23,028 KB
testcase_34 AC 154 ms
22,168 KB
testcase_35 AC 69 ms
16,576 KB
testcase_36 AC 96 ms
18,296 KB
testcase_37 AC 127 ms
19,916 KB
testcase_38 AC 169 ms
22,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<vector>
#include<algorithm>
#include<set>
#include<map>
#include<unordered_map>
#include<stack>
#include<queue>
#include<math.h>
#include<functional>
#include<bitset>
#include<cassert>
using namespace std;
using lint = long long;
using ld = long double;
using pint = pair<int, int>;
using plint = pair<lint, lint>;
#define MOD 1000000007LL
#define INF 1000000000LL
#define EPS 1e-10
#define FOR(i,n,m) for(lint i=n;i<(int)m;i++)
#define REP(i,n) FOR(i,0,n)
#define DUMP(a) REP(d,a.size()){cout<<a[d];if(d!=a.size()-1)cout<<" ";else cout<<endl;}
#define ALL(v) v.begin(),v.end()
#define UNIQUE(v)  sort(ALL(v));v.erase(unique(ALL(v)),v.end());
#define pb push_back

int n;
vector<vector<int>> tree;
lint ans = 0;

#define MAX_N 1000000
long long extgcd(long long a, long long b, long long& x, long long& y) {
	long long d = a;
	if (b != 0) {
		d = extgcd(b, a % b, y, x);
		y -= (a / b) * x;
	} else {
		x = 1; y = 0;
	}
	return d;
}
long long mod_inverse(long long a, long long m) {
	long long x, y;
	if(extgcd(a, m, x, y) == 1) return (m + x % m) % m;
	else return -1;
}
vector<long long> fact(MAX_N+1, INF);
long long mod_fact(long long n, long long& e) {
	if(fact[0] == INF) {
		fact[0]=1;
		if(MAX_N != 0) fact[1]=1;
		for(lint i = 2; i <= MAX_N; ++i) {
			fact[i] = (fact[i-1] * i) % MOD;
		}
	}
	e = 0;
	if(n == 0) return 1;
	long long res = mod_fact(n / MOD, e);
	e += n / MOD;
	if((n / MOD) % 2 != 0) return (res * (MOD - fact[n % MOD])) % MOD;
	return (res * fact[n % MOD]) % MOD;
}
// return nCk
long long mod_comb(long long n, long long k) {
	if(n < 0 || k < 0 || n < k) return 0;
	long long e1, e2, e3;
	long long a1 = mod_fact(n, e1), a2 = mod_fact(k, e2), a3 = mod_fact(n - k, e3);
	if(e1 > e2 + e3) return 0;
	return (a1 * mod_inverse((a2 * a3) % MOD, MOD)) % MOD;
}

lint factoria[202020];

void dfs(int pos, int par, int height) {
	ans += (mod_comb(n, height) * factoria[n - height]) % MOD * factoria[height - 1];
	ans %= MOD;
	REP(i, tree[pos].size()) {
		if(tree[pos][i] == par) continue;
		dfs(tree[pos][i], pos, height + 1);
	}
	return;
}

int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	factoria[0] = 1;
	FOR(i, 1, 202020) {
		factoria[i] = factoria[i - 1] * i;
		factoria[i] %= MOD;
	}
	cin >> n;
	tree.resize(n);
	REP(i, n - 1) {
		int u, v;
		cin >> u >> v;
		u--; v--;
		tree[u].pb(v);
		tree[v].pb(u);
	}
	dfs(0, -1, 1);
	cout << (ans % MOD + MOD) % MOD << endl;
	return 0;
}
/* --------------------------------------- */
0