結果

問題 No.827 総神童数
ユーザー kazumakazuma
提出日時 2019-05-03 21:38:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 2,479 bytes
コンパイル時間 1,883 ms
コンパイル使用メモリ 205,328 KB
実行使用メモリ 41,124 KB
最終ジャッジ日時 2024-06-10 06:30:42
合計ジャッジ時間 7,381 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
19,144 KB
testcase_01 AC 27 ms
19,072 KB
testcase_02 AC 25 ms
19,200 KB
testcase_03 AC 25 ms
19,148 KB
testcase_04 AC 27 ms
19,072 KB
testcase_05 AC 25 ms
19,200 KB
testcase_06 AC 25 ms
19,072 KB
testcase_07 AC 26 ms
19,072 KB
testcase_08 AC 25 ms
19,072 KB
testcase_09 AC 216 ms
41,124 KB
testcase_10 AC 86 ms
25,856 KB
testcase_11 AC 29 ms
19,404 KB
testcase_12 AC 54 ms
22,348 KB
testcase_13 AC 178 ms
37,376 KB
testcase_14 AC 31 ms
19,792 KB
testcase_15 AC 81 ms
26,060 KB
testcase_16 AC 168 ms
33,000 KB
testcase_17 AC 202 ms
36,384 KB
testcase_18 AC 101 ms
27,724 KB
testcase_19 AC 227 ms
29,516 KB
testcase_20 AC 157 ms
26,752 KB
testcase_21 AC 113 ms
24,704 KB
testcase_22 AC 166 ms
27,424 KB
testcase_23 AC 27 ms
19,148 KB
testcase_24 AC 183 ms
28,288 KB
testcase_25 AC 143 ms
26,112 KB
testcase_26 AC 195 ms
28,416 KB
testcase_27 AC 126 ms
25,296 KB
testcase_28 AC 122 ms
25,088 KB
testcase_29 AC 102 ms
23,884 KB
testcase_30 AC 49 ms
20,432 KB
testcase_31 AC 83 ms
22,784 KB
testcase_32 AC 81 ms
22,728 KB
testcase_33 AC 195 ms
29,184 KB
testcase_34 AC 188 ms
28,308 KB
testcase_35 AC 88 ms
23,040 KB
testcase_36 AC 109 ms
24,576 KB
testcase_37 AC 136 ms
26,188 KB
testcase_38 AC 191 ms
29,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using graph = vector<vector<int>>;

template<int MOD>
struct mod_int {
	static const int mod = MOD;
	unsigned x;
	mod_int() : x(0) { }
	mod_int(int sig) { int sigt = sig % MOD; if (sigt < 0) sigt += MOD; x = sigt; }
	mod_int(long long sig) { int sigt = sig % MOD; if (sigt < 0) sigt += MOD; x = sigt; }
	int get() const { return (int)x; }

	mod_int &operator+=(mod_int that) { if ((x += that.x) >= MOD) x -= MOD; return *this; }
	mod_int &operator-=(mod_int that) { if ((x += MOD - that.x) >= MOD) x -= MOD; return *this; }
	mod_int &operator*=(mod_int that) { x = (unsigned long long)x * that.x % MOD; return *this; }
	mod_int &operator/=(mod_int that) { return *this *= that.inverse(); }

	mod_int operator+(mod_int that) const { return mod_int(*this) += that; }
	mod_int operator-(mod_int that) const { return mod_int(*this) -= that; }
	mod_int operator*(mod_int that) const { return mod_int(*this) *= that; }
	mod_int operator/(mod_int that) const { return mod_int(*this) /= that; }

	mod_int inverse() const {
		long long a = x, b = MOD, u = 1, v = 0;
		while (b) {
			long long t = a / b;
			a -= t * b; swap(a, b);
			u -= t * v; swap(u, v);
		}
		return mod_int(u);
	}
};

template<int MOD>
istream& operator >> (istream& is, mod_int<MOD>& val) {
	long long x;
	is >> x; val = x;
	return is;
}

template<int MOD>
ostream& operator << (ostream& os, const mod_int<MOD>& val) {
	os << val.get();
	return os;
}

using mint = mod_int<1000000007>;

const int MAX = 2e6;

bool inited = false;
mint fac[MAX + 1];
mint rfac[MAX + 1];

void init() {
	inited = true;
	fac[0] = 1;
	for (int i = 1; i <= MAX; i++) {
		fac[i] = fac[i - 1] * i;
	}
	rfac[MAX] = fac[MAX].inverse();
	for (int i = MAX; i >= 1; i--) {
		rfac[i - 1] = rfac[i] * i;
	}
}

mint nPr(int n, int r) {
	if (!inited) init();
	return r < 0 || n < r ? 0 : fac[n] * rfac[n - r];
}

mint nCr(int n, int r) {
	if (!inited) init();
	return r < 0 || n < r ? 0 : fac[n] * rfac[n - r] * rfac[r];
}

mint nHr(int n, int r) {
	if (!inited) init();
	return r == 0 ? 1 : nCr(n + r - 1, r);
}

int N;
mint res = 0;

void dfs(int v, int prev, int d, const graph& G) {
	res += fac[N] / (d + 1);
	for (auto to : G[v]) if (to != prev) {
		dfs(to, v, d + 1, G);
	}
}

int main()
{
	init();
	cin >> N;
	graph G(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);
	}
	dfs(0, -1, 0, G);
	cout << res << endl;
	return 0;
}
0