結果

問題 No.417 チューリップバブル
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-04-30 09:48:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-06-27 23:47:58
合計ジャッジ時間 4,018 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 50 ms
52,096 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 40 ms
51,712 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 40 ms
51,456 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 47 ms
59,008 KB
testcase_10 AC 58 ms
63,616 KB
testcase_11 AC 58 ms
63,616 KB
testcase_12 AC 59 ms
63,360 KB
testcase_13 AC 60 ms
64,640 KB
testcase_14 AC 65 ms
66,688 KB
testcase_15 AC 60 ms
63,232 KB
testcase_16 AC 62 ms
64,256 KB
testcase_17 AC 74 ms
67,968 KB
testcase_18 AC 69 ms
68,224 KB
testcase_19 AC 66 ms
65,920 KB
testcase_20 AC 74 ms
69,504 KB
testcase_21 AC 80 ms
71,296 KB
testcase_22 AC 84 ms
68,352 KB
testcase_23 AC 90 ms
75,520 KB
testcase_24 AC 44 ms
52,608 KB
testcase_25 AC 82 ms
70,272 KB
testcase_26 AC 63 ms
64,640 KB
testcase_27 AC 69 ms
66,304 KB
testcase_28 AC 103 ms
75,392 KB
testcase_29 AC 92 ms
75,392 KB
testcase_30 AC 74 ms
70,784 KB
testcase_31 AC 97 ms
75,776 KB
testcase_32 AC 40 ms
51,328 KB
testcase_33 AC 40 ms
52,096 KB
testcase_34 AC 46 ms
58,240 KB
testcase_35 AC 115 ms
75,648 KB
testcase_36 AC 95 ms
75,392 KB
testcase_37 AC 90 ms
75,392 KB
testcase_38 AC 92 ms
71,936 KB
testcase_39 AC 86 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
U = [int(input()) for _ in range(n)]
G = [[] for _ in range(n)]
for _ in range(n-1):
    a, b, c = map(int, input().split())
    G[a].append((b, c))
    G[b].append((a, c))
def dfs(u, p):
    cur = {0 : U[u]}
    for v, c in G[u]:
        if v == p:
            continue
        nxt = list(dfs(v, u).items())
        for t1, x in list(cur.items()):
            for t2, y in nxt:
                t = t1+t2+c*2
                if t <= m:
                    cur[t] = max(cur.get(t, 0), x+y)
    return cur
print(max(dfs(0, 0).values()))
0