結果

問題 No.1227 I hate ThREE
ユーザー tyawanmusityawanmusi
提出日時 2020-07-28 21:22:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,169 ms / 2,000 ms
コード長 1,089 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 164,992 KB
最終ジャッジ日時 2024-06-10 14:23:27
合計ジャッジ時間 14,444 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 42 ms
12,800 KB
testcase_04 AC 41 ms
11,520 KB
testcase_05 AC 71 ms
12,672 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 25 ms
10,880 KB
testcase_08 AC 120 ms
14,464 KB
testcase_09 AC 100 ms
13,696 KB
testcase_10 AC 66 ms
12,160 KB
testcase_11 AC 466 ms
25,088 KB
testcase_12 AC 940 ms
42,368 KB
testcase_13 AC 34 ms
11,136 KB
testcase_14 AC 85 ms
14,592 KB
testcase_15 AC 129 ms
15,616 KB
testcase_16 AC 168 ms
18,560 KB
testcase_17 AC 179 ms
17,024 KB
testcase_18 AC 427 ms
25,884 KB
testcase_19 AC 328 ms
24,960 KB
testcase_20 AC 458 ms
25,984 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 194 ms
20,352 KB
testcase_23 AC 1,138 ms
160,256 KB
testcase_24 AC 1,169 ms
164,992 KB
testcase_25 AC 613 ms
88,576 KB
testcase_26 AC 735 ms
51,328 KB
testcase_27 AC 776 ms
52,992 KB
testcase_28 AC 415 ms
32,384 KB
testcase_29 AC 784 ms
54,016 KB
testcase_30 AC 390 ms
31,360 KB
testcase_31 AC 390 ms
31,104 KB
testcase_32 AC 778 ms
53,504 KB
testcase_33 AC 389 ms
30,976 KB
testcase_34 AC 764 ms
52,352 KB
testcase_35 AC 379 ms
30,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(2000)
input = sys.stdin.readline

def solve(x):
  minc = min(2 * n - 1, x)
  dp = [minc * [1] for _ in range(n)]

  def dfs(r, node):
    for mode in edge[node]:
      if mode == r:continue
      dpsub = dfs(node, mode)
      dp[node][0] = (dp[node][0] * dpsub[1]) % mod
      dp[node][minc - 1] = (dp[node][minc - 1] * dpsub[minc - 2]) % mod
      for i in range(1, minc - 1):
        dp[node][i] = (dp[node][i] * (dpsub[i - 1]+dpsub[i + 1])) % mod
    return dp[node]

  lastdp = dfs(-1, 0)

  if minc == x:
    return sum(lastdp)
  else:
    return sum(lastdp) + (x - minc) * lastdp[minc // 2]


mod = 10 ** 9 + 7
n, c = map(int, input().split())
edge = [[] for _ in range(n)]
for _ in range(n - 1):
  a, b = map(int, input().split())
  a -= 1
  b -= 1
  edge[a].append(b)
  edge[b].append(a)

c1 = (c + 2) // 3
c2 = (c + 1) // 3
c3 = c // 3

ans1 = solve(c1)

if c1 == c2:
  ans2 = ans1
elif c2 == 1:
  ans2 = 0
else:
  ans2 = solve(c2)
 
if c2 == c3:
  ans3 = ans2
elif c3 == 1:
  ans3 = 0
else:
  ans3 = solve(c3)


print((ans1 + ans2 + ans3) % mod)
0