結果

問題 No.1667 Forest
ユーザー mkawa2mkawa2
提出日時 2021-09-03 23:34:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 876 ms / 3,000 ms
コード長 1,432 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 87,120 KB
実行使用メモリ 78,168 KB
最終ジャッジ日時 2023-08-22 01:47:11
合計ジャッジ時間 8,586 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 876 ms
78,168 KB
testcase_01 AC 874 ms
78,068 KB
testcase_02 AC 847 ms
78,040 KB
testcase_03 AC 93 ms
77,020 KB
testcase_04 AC 853 ms
78,076 KB
testcase_05 AC 522 ms
77,700 KB
testcase_06 AC 343 ms
77,536 KB
testcase_07 AC 236 ms
77,544 KB
testcase_08 AC 156 ms
77,444 KB
testcase_09 AC 128 ms
77,452 KB
testcase_10 AC 105 ms
76,816 KB
testcase_11 AC 86 ms
76,860 KB
testcase_12 AC 71 ms
71,416 KB
testcase_13 AC 71 ms
71,380 KB
testcase_14 AC 72 ms
71,416 KB
testcase_15 AC 72 ms
71,336 KB
testcase_16 AC 71 ms
71,652 KB
testcase_17 AC 72 ms
71,288 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