結果

問題 No.827 総神童数
ユーザー 37zigen37zigen
提出日時 2019-05-03 22:41:42
言語 Java
(openjdk 23)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,659 bytes
コンパイル時間 3,044 ms
コンパイル使用メモリ 80,704 KB
実行使用メモリ 148,740 KB
最終ジャッジ日時 2024-12-31 18:21:19
合計ジャッジ時間 41,181 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 224 ms
76,892 KB
testcase_01 AC 226 ms
76,760 KB
testcase_02 AC 237 ms
76,748 KB
testcase_03 AC 236 ms
76,836 KB
testcase_04 AC 234 ms
76,748 KB
testcase_05 AC 223 ms
76,752 KB
testcase_06 AC 229 ms
76,760 KB
testcase_07 AC 228 ms
76,920 KB
testcase_08 AC 225 ms
76,704 KB
testcase_09 TLE -
testcase_10 AC 826 ms
125,200 KB
testcase_11 AC 379 ms
89,300 KB
testcase_12 AC 613 ms
98,496 KB
testcase_13 TLE -
testcase_14 AC 425 ms
91,312 KB
testcase_15 AC 808 ms
120,852 KB
testcase_16 AC 1,717 ms
136,272 KB
testcase_17 AC 1,902 ms
142,428 KB
testcase_18 AC 875 ms
131,124 KB
testcase_19 AC 1,578 ms
136,972 KB
testcase_20 AC 1,303 ms
128,892 KB
testcase_21 AC 1,186 ms
123,736 KB
testcase_22 AC 1,261 ms
131,176 KB
testcase_23 AC 365 ms
80,076 KB
testcase_24 AC 1,440 ms
134,252 KB
testcase_25 AC 1,333 ms
126,896 KB
testcase_26 AC 1,341 ms
134,048 KB
testcase_27 AC 1,170 ms
124,080 KB
testcase_28 AC 1,184 ms
124,136 KB
testcase_29 AC 1,103 ms
121,252 KB
testcase_30 AC 577 ms
93,520 KB
testcase_31 AC 954 ms
112,296 KB
testcase_32 AC 885 ms
111,976 KB
testcase_33 AC 1,489 ms
136,732 KB
testcase_34 AC 1,347 ms
132,116 KB
testcase_35 AC 942 ms
114,120 KB
testcase_36 AC 1,067 ms
121,612 KB
testcase_37 AC 1,305 ms
126,648 KB
testcase_38 AC 1,472 ms
134,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}

	int[] depth;
	ArrayList<Integer>[] g;
	long mo = (long) 1e9 + 7;
	long[] fac = new long[1000000];
	long[] ifac = new long[1000000];
	long[] inv = new long[1000000];

	{
		fac[0] = ifac[0] = inv[0] = inv[1] = 1;
		for (int i = 1; i < fac.length; ++i) {
			fac[i] = fac[i - 1] * i % mo;
		}
		// 0 = p/m * m + p%mo
		// inv(m) = inv(p%m)*(p/m)
		for (int i = 2; i < inv.length; ++i) {
			inv[i] = mo - inv[(int) (mo % i)] * (mo / i) % mo;
		}
		for (int i = 1; i < ifac.length; ++i) {
			ifac[i] = ifac[i - 1] * inv[i] % mo;
		}
	}

	long pow(long a, long n) {
		long ret = 1;
		for (; n > 0; n >>= 1, a = a * a % mo) {
			ret = ret * a % mo;
		}
		return ret;
	}

	void dfs(int cur, int par) {
		for (int dst : g[cur]) {
			if (dst == par) {
				continue;
			}
			depth[dst] = depth[cur] + 1;
			dfs(dst, cur);
		}
	}

	void run() throws Exception {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] u = new int[N - 1];
		int[] v = new int[N - 1];
		depth = new int[N];

		long ans = 0;

		g = new ArrayList[N];
		for (int i = 0; i < N; ++i) {
			g[i] = new ArrayList<>();
		}

		for (int i = 0; i < N - 1; ++i) {
			u[i] = sc.nextInt();
			v[i] = sc.nextInt();
			--u[i];
			--v[i];
			g[u[i]].add(v[i]);
			g[v[i]].add(u[i]);
		}

		dfs(0, -1);

		ans = fac[N];

		long s = 0;

		for (int i = 0; i < N; ++i) {
			s = (s + inv[depth[i] + 1]) % mo;
		}

		ans = ans * s % mo;

		System.out.println(ans);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0