結果

問題 No.1227 I hate ThREE
ユーザー rlangevinrlangevin
提出日時 2024-01-22 12:18:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,542 ms / 2,000 ms
コード長 1,200 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 132,344 KB
最終ジャッジ日時 2024-09-28 06:23:27
合計ジャッジ時間 14,776 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 78 ms
76,928 KB
testcase_04 AC 87 ms
76,976 KB
testcase_05 AC 79 ms
78,848 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 43 ms
60,160 KB
testcase_08 AC 187 ms
94,592 KB
testcase_09 AC 170 ms
92,672 KB
testcase_10 AC 139 ms
88,684 KB
testcase_11 AC 454 ms
128,448 KB
testcase_12 AC 475 ms
130,924 KB
testcase_13 AC 105 ms
82,280 KB
testcase_14 AC 183 ms
91,904 KB
testcase_15 AC 222 ms
96,768 KB
testcase_16 AC 318 ms
109,696 KB
testcase_17 AC 251 ms
101,612 KB
testcase_18 AC 364 ms
116,160 KB
testcase_19 AC 330 ms
111,132 KB
testcase_20 AC 381 ms
117,888 KB
testcase_21 AC 85 ms
78,976 KB
testcase_22 AC 337 ms
112,000 KB
testcase_23 AC 1,542 ms
131,072 KB
testcase_24 AC 1,201 ms
131,328 KB
testcase_25 AC 1,524 ms
132,344 KB
testcase_26 AC 461 ms
128,580 KB
testcase_27 AC 479 ms
130,304 KB
testcase_28 AC 485 ms
130,740 KB
testcase_29 AC 476 ms
130,816 KB
testcase_30 AC 463 ms
129,084 KB
testcase_31 AC 519 ms
129,280 KB
testcase_32 AC 483 ms
130,816 KB
testcase_33 AC 460 ms
128,968 KB
testcase_34 AC 472 ms
130,048 KB
testcase_35 AC 458 ms
128,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def non_rec_dfs(G, s):
    stack = [s]
    N = len(G)
    par = [-1] * N
    sz = [1] * N
    dp = [[1] * M for _ in range(N)]
    ans = 0
    while stack:
        u = stack.pop()
        if u >= 0:
            stack.append(~u)
            for v in G[u]:
                if v == par[u]:
                    continue
                par[v] = u
                stack.append(v)
        else:
            u = ~u
            for i in range(M):
                for v in G[u]:
                    temp = 0
                    if v == par[u]:
                        continue
                    sz[u] += sz[v]
                    if i >= 3:
                        temp += dp[v][i - 3]
                    if i < M - 3:
                        temp += dp[v][i + 3]
                    dp[u][i] *= temp
                    dp[u][i] %= mod
                
    return dp[0]


N, C = map(int, input().split())
M = min(7000, C)
mod = 10 ** 9 + 7
G = [[] for i in range(N)]
for i in range(N - 1):
    u, v = map(int, input().split())
    u, v = u - 1, v - 1
    G[u].append(v)
    G[v].append(u)
    
dp = non_rec_dfs(G, 0)
ans = sum(dp) + dp[M//2] * (C - M)
print(ans%mod)
0