結果

問題 No.196 典型DP (1)
ユーザー とりゐとりゐ
提出日時 2021-11-17 01:53:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 109,192 KB
最終ジャッジ日時 2024-06-01 05:55:50
合計ジャッジ時間 7,134 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,936 KB
testcase_01 AC 39 ms
52,892 KB
testcase_02 AC 40 ms
53,624 KB
testcase_03 AC 40 ms
52,616 KB
testcase_04 AC 39 ms
52,372 KB
testcase_05 AC 39 ms
53,668 KB
testcase_06 AC 40 ms
52,080 KB
testcase_07 AC 39 ms
52,868 KB
testcase_08 AC 40 ms
52,472 KB
testcase_09 AC 40 ms
52,548 KB
testcase_10 AC 40 ms
52,952 KB
testcase_11 AC 45 ms
59,616 KB
testcase_12 AC 46 ms
60,424 KB
testcase_13 AC 51 ms
61,464 KB
testcase_14 AC 51 ms
62,028 KB
testcase_15 AC 58 ms
66,468 KB
testcase_16 AC 91 ms
80,276 KB
testcase_17 AC 118 ms
85,848 KB
testcase_18 AC 162 ms
93,648 KB
testcase_19 AC 180 ms
98,644 KB
testcase_20 AC 220 ms
108,868 KB
testcase_21 AC 212 ms
108,652 KB
testcase_22 AC 216 ms
109,192 KB
testcase_23 AC 206 ms
109,028 KB
testcase_24 AC 210 ms
108,676 KB
testcase_25 AC 206 ms
108,572 KB
testcase_26 AC 159 ms
108,372 KB
testcase_27 AC 157 ms
108,272 KB
testcase_28 AC 156 ms
108,632 KB
testcase_29 AC 157 ms
108,336 KB
testcase_30 AC 159 ms
108,616 KB
testcase_31 AC 205 ms
108,512 KB
testcase_32 AC 205 ms
108,660 KB
testcase_33 AC 206 ms
108,152 KB
testcase_34 AC 204 ms
108,588 KB
testcase_35 AC 206 ms
108,348 KB
testcase_36 AC 201 ms
108,244 KB
testcase_37 AC 177 ms
108,788 KB
testcase_38 AC 215 ms
108,640 KB
testcase_39 AC 197 ms
108,656 KB
testcase_40 AC 207 ms
108,212 KB
testcase_41 AC 39 ms
53,872 KB
testcase_42 AC 39 ms
53,304 KB
testcase_43 AC 41 ms
52,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
edge=[[] for i in range(n)]
for i in range(n-1):
  a,b=map(int,input().split())
  edge[a].append(b)
  edge[b].append(a)

mod=10**9+7
dp=[[0]*(n+1) for i in range(n)]
for i in range(n):
  dp[i][0]=1
  if len(edge[i])==1 and i!=0:
    dp[i][1]=1
d=[(0,0,0)]
seen=[1]*n
size=[1]*n
while d:
  x,y,z=d.pop()
  if x==0:
    seen[y]=0
    for i in edge[y]:
      if seen[i]:
        d.append((1,i,y))
        d.append((0,i,y))
  else:
    dp_new=[0]*(n+1)
    for k1 in range(size[z]):
      for k2 in range(size[y]+1):
        dp_new[k1+k2]+=dp[z][k1]*dp[y][k2]
    size[z]+=size[y]
    for i in range(size[z]+1):
      dp[z][i]=dp_new[i]%mod
    dp[z][size[z]]=1

print(dp[0][k])
0