結果

問題 No.1667 Forest
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-10-10 18:08:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,788 ms / 3,000 ms
コード長 1,106 bytes
コンパイル時間 601 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 90,756 KB
最終ジャッジ日時 2024-09-14 13:45:39
合計ジャッジ時間 12,883 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,788 ms
90,756 KB
testcase_01 AC 1,758 ms
89,980 KB
testcase_02 AC 1,707 ms
89,588 KB
testcase_03 AC 79 ms
76,544 KB
testcase_04 AC 1,551 ms
89,504 KB
testcase_05 AC 932 ms
82,188 KB
testcase_06 AC 562 ms
78,840 KB
testcase_07 AC 362 ms
77,480 KB
testcase_08 AC 209 ms
76,696 KB
testcase_09 AC 150 ms
76,452 KB
testcase_10 AC 108 ms
76,416 KB
testcase_11 AC 71 ms
72,192 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 40 ms
52,480 KB
testcase_14 AC 41 ms
52,736 KB
testcase_15 AC 39 ms
52,352 KB
testcase_16 AC 39 ms
52,736 KB
testcase_17 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Combinatorics:
	def __init__(self, n: int) -> None:
		self.n = n
		self.fa = [1] * (self.n * 2 + 1)
		self.fi = [1] * (self.n * 2 + 1)

		for i in range(1, self.n * 2 + 1):
			self.fa[i] = self.fa[i - 1] * i % mod

		self.fi[-1] = pow(self.fa[-1], mod - 2, mod)

		for i in range(self.n * 2, 0, -1):
			self.fi[i - 1] = self.fi[i] * i % mod

	def comb(self, n: int, r: int) -> int:
		if n < r:return 0
		if n < 0 or r < 0:return 0
		return self.fa[n] * self.fi[r] % mod * self.fi[n - r] % mod

	def perm(self, n: int, r: int) -> int:
		if n < r:return 0
		if n < 0 or r < 0:return 0
		return self.fa[n] * self.fi[n - r] % mod
		
	def combr(self, n: int, r: int) -> int:
		if n == r == 0:return 1
		return self.comb(n + r - 1, r)

n, mod = map(int, input().split())
dp = [[0] * n for i in range(n + 1)]
C = Combinatorics(300)
dp[0][0] = 1
for i in range(n):
	for j in range(i + 1):
		dp[i + 1][j] += dp[i][j]
		dp[i + 1][j] %= mod
		for k in range(2, n - i + 1):
			dp[i + k][j + k - 1] += dp[i][j] * C.comb(n - i - 1, k - 1) * pow(k, k - 2, mod)
			dp[i + k][j + k - 1] %= mod
print(*dp[n], sep="\n")
0