結果

問題 No.196 典型DP (1)
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-12-01 09:01:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 85,544 KB
最終ジャッジ日時 2024-12-01 09:01:49
合計ジャッジ時間 5,767 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,484 KB
testcase_01 AC 36 ms
52,704 KB
testcase_02 AC 34 ms
52,768 KB
testcase_03 AC 35 ms
52,824 KB
testcase_04 AC 34 ms
53,224 KB
testcase_05 AC 36 ms
52,268 KB
testcase_06 AC 35 ms
53,004 KB
testcase_07 AC 35 ms
52,756 KB
testcase_08 AC 37 ms
52,376 KB
testcase_09 AC 38 ms
53,496 KB
testcase_10 AC 39 ms
52,404 KB
testcase_11 AC 39 ms
53,024 KB
testcase_12 AC 46 ms
62,220 KB
testcase_13 AC 47 ms
60,388 KB
testcase_14 AC 46 ms
60,948 KB
testcase_15 AC 57 ms
65,476 KB
testcase_16 AC 73 ms
71,460 KB
testcase_17 AC 95 ms
76,696 KB
testcase_18 AC 127 ms
76,680 KB
testcase_19 AC 114 ms
77,120 KB
testcase_20 AC 130 ms
77,752 KB
testcase_21 AC 128 ms
76,960 KB
testcase_22 AC 126 ms
76,984 KB
testcase_23 AC 127 ms
81,904 KB
testcase_24 AC 126 ms
80,592 KB
testcase_25 AC 122 ms
80,560 KB
testcase_26 AC 128 ms
85,544 KB
testcase_27 AC 126 ms
85,484 KB
testcase_28 AC 125 ms
85,028 KB
testcase_29 AC 120 ms
85,344 KB
testcase_30 AC 39 ms
53,472 KB
testcase_31 AC 161 ms
77,332 KB
testcase_32 AC 161 ms
77,212 KB
testcase_33 AC 160 ms
77,196 KB
testcase_34 AC 161 ms
77,440 KB
testcase_35 AC 39 ms
53,008 KB
testcase_36 AC 159 ms
77,056 KB
testcase_37 AC 129 ms
76,988 KB
testcase_38 AC 169 ms
77,092 KB
testcase_39 AC 160 ms
76,980 KB
testcase_40 AC 40 ms
52,220 KB
testcase_41 AC 39 ms
52,884 KB
testcase_42 AC 38 ms
53,012 KB
testcase_43 AC 35 ms
52,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
if n==k:
  print(1)
  exit()
e=[[] for i in range(n)]
for i in range(n-1):
  a,b=map(int,input().split())
  e[a]+=[b]
  e[b]+=[a]
M=10**9+7
v=[0]*n
w=[[] for i in range(n)]
u=[0]*n
q=[0]
while len(q)>0:
  s=q[-1]
  if v[s]==0:
    v[s]=1
    q+=[t for t in e[s] if v[t]==0]
  else:
    u[s]=1
    w[s]=[0]
    w[s][0]=1
    for t in e[s]:
      if v[t]==0:
        w[t]+=[1]
        nw=[0]*(u[s]+u[t])
        for i in range(u[s]):
          for j in range(u[t]+1):
            nw[i+j]+=w[s][i]*w[t][j]
            nw[i+j]%=M
        w[s]=nw
        u[s]+=u[t]
    v[s]=0
    q.pop()
print(w[0][k])
0