結果

問題 No.1667 Forest
ユーザー mkawa2mkawa2
提出日時 2021-09-03 23:34:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 800 ms / 3,000 ms
コード長 1,432 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 77,084 KB
最終ジャッジ日時 2024-12-15 18:37:57
合計ジャッジ時間 6,562 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 800 ms
76,804 KB
testcase_01 AC 791 ms
77,084 KB
testcase_02 AC 793 ms
76,880 KB
testcase_03 AC 56 ms
65,876 KB
testcase_04 AC 767 ms
76,868 KB
testcase_05 AC 459 ms
76,508 KB
testcase_06 AC 297 ms
76,552 KB
testcase_07 AC 199 ms
76,356 KB
testcase_08 AC 124 ms
76,192 KB
testcase_09 AC 90 ms
74,056 KB
testcase_10 AC 69 ms
70,164 KB
testcase_11 AC 53 ms
64,144 KB
testcase_12 AC 36 ms
53,692 KB
testcase_13 AC 35 ms
53,728 KB
testcase_14 AC 38 ms
54,116 KB
testcase_15 AC 35 ms
52,948 KB
testcase_16 AC 35 ms
52,952 KB
testcase_17 AC 38 ms
53,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**20
# md = 998244353
# md = 10**9+7


def nCr(com_n, com_r):
    if com_r < 0: return 0
    if com_n < com_r: return 0
    return fac[com_n]*ifac[com_r]%md*ifac[com_n-com_r]%md

def cnt_tree(n):
    if n==1:return 1
    return pow(n,n-2,md)

n,md=LI()

n_max = 400
fac = [1]
for i in range(1, n_max+1): fac.append(fac[-1]*i%md)
ifac = [1]*(n_max+1)
ifac[n_max] = pow(fac[n_max], md-2, md)
for i in range(n_max-1, 1, -1): ifac[i] = ifac[i+1]*(i+1)%md

dp=[[0]*n for _ in range(n+1)]
dp[0][0]=1

for i in range(n):
    for j in range(n):
        pre=dp[i][j]
        if pre==0:continue
        for ni in range(i+1,n+1):
            m=ni-i
            dp[ni][j+m-1]+=nCr(n-i-1,m-1)*pre%md*cnt_tree(m)%md
            # print(m,nCr(n-i,m-1),pre,cnt_tree(m))
            dp[ni][j+m-1]%=md
    # p2D(dp)
    # print()

for j in range(n):
    print(dp[n][j])
0