結果
問題 | No.417 チューリップバブル |
ユーザー | shinichi |
提出日時 | 2023-01-29 11:22:43 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 628 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 82,560 KB |
最終ジャッジ日時 | 2024-06-29 09:30:20 |
合計ジャッジ時間 | 13,771 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
65,280 KB |
testcase_01 | AC | 49 ms
59,904 KB |
testcase_02 | AC | 49 ms
60,032 KB |
testcase_03 | AC | 49 ms
59,776 KB |
testcase_04 | AC | 46 ms
57,344 KB |
testcase_05 | AC | 46 ms
57,472 KB |
testcase_06 | AC | 55 ms
60,928 KB |
testcase_07 | AC | 51 ms
60,800 KB |
testcase_08 | AC | 154 ms
75,264 KB |
testcase_09 | AC | 285 ms
75,520 KB |
testcase_10 | AC | 357 ms
75,264 KB |
testcase_11 | AC | 637 ms
75,776 KB |
testcase_12 | AC | 1,423 ms
75,776 KB |
testcase_13 | AC | 301 ms
76,032 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 122 ms
75,520 KB |
testcase_16 | AC | 122 ms
75,264 KB |
testcase_17 | AC | 523 ms
75,904 KB |
testcase_18 | AC | 522 ms
76,800 KB |
testcase_19 | AC | 516 ms
75,904 KB |
testcase_20 | AC | 1,855 ms
77,056 KB |
testcase_21 | TLE | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
N, M = map(int, input().split()) U = [int(input()) for _ in range(N)] tree = [[] for _ in range(N)] for _ in range(N-1): a, b, c = map(int, input().split()) tree[a].append((b, c)) tree[b].append((a, c)) # 使用した時間を入れる dp = [[U[i]] * (M + 1) for i in range(N)] def dfs(v, p=-1): for nv, nw in tree[v]: if nv == p: continue dfs(nv, v) for m1 in range(M, -1, -1): for m2 in range(M-m1+1): t = m1 + 2*nw + m2 if t <= M: dp[v][t] = max(dp[v][t], dp[v][m1] + dp[nv][m2]) dfs(0) print(max(dp[0]))