結果

問題 No.1667 Forest
ユーザー mkawa2mkawa2
提出日時 2021-09-03 23:34:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 901 ms / 3,000 ms
コード長 1,432 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-05-09 07:41:37
合計ジャッジ時間 7,207 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 901 ms
76,928 KB
testcase_01 AC 883 ms
76,928 KB
testcase_02 AC 873 ms
77,184 KB
testcase_03 AC 69 ms
65,664 KB
testcase_04 AC 857 ms
76,928 KB
testcase_05 AC 522 ms
76,800 KB
testcase_06 AC 333 ms
76,544 KB
testcase_07 AC 237 ms
76,416 KB
testcase_08 AC 153 ms
76,416 KB
testcase_09 AC 119 ms
72,320 KB
testcase_10 AC 84 ms
68,608 KB
testcase_11 AC 66 ms
63,872 KB
testcase_12 AC 45 ms
52,096 KB
testcase_13 AC 43 ms
52,224 KB
testcase_14 AC 48 ms
52,736 KB
testcase_15 AC 43 ms
52,352 KB
testcase_16 AC 48 ms
52,480 KB
testcase_17 AC 42 ms
52,352 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