結果
問題 | No.417 チューリップバブル |
ユーザー | neko0774 |
提出日時 | 2023-01-31 13:42:41 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 803 bytes |
コンパイル時間 | 155 ms |
コンパイル使用メモリ | 82,592 KB |
実行使用メモリ | 83,996 KB |
最終ジャッジ日時 | 2024-06-30 17:13:59 |
合計ジャッジ時間 | 12,923 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
70,272 KB |
testcase_01 | AC | 48 ms
62,816 KB |
testcase_02 | AC | 49 ms
62,532 KB |
testcase_03 | AC | 49 ms
62,644 KB |
testcase_04 | AC | 41 ms
59,044 KB |
testcase_05 | AC | 41 ms
57,532 KB |
testcase_06 | AC | 50 ms
62,184 KB |
testcase_07 | AC | 51 ms
61,924 KB |
testcase_08 | AC | 121 ms
63,572 KB |
testcase_09 | AC | 226 ms
64,156 KB |
testcase_10 | AC | 293 ms
65,292 KB |
testcase_11 | AC | 1,151 ms
69,456 KB |
testcase_12 | AC | 1,143 ms
68,788 KB |
testcase_13 | AC | 453 ms
67,080 KB |
testcase_14 | AC | 1,832 ms
73,040 KB |
testcase_15 | AC | 162 ms
65,568 KB |
testcase_16 | AC | 162 ms
66,132 KB |
testcase_17 | AC | 978 ms
73,088 KB |
testcase_18 | AC | 981 ms
73,092 KB |
testcase_19 | AC | 980 ms
72,732 KB |
testcase_20 | TLE | - |
testcase_21 | -- | - |
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 | -- | - |
ソースコード
import sys sys.setrecursionlimit(10**7) def main(): 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]) dp = [[0]*(M+1) for _ in range(N)] seen = [0]*N import pypyjit pypyjit.set_param('max_unroll_recursion=-1') def dfs(x, par=-1): seen[x] = 1 dp[x][0] = U[x] for nx, t in G[x]: if nx==par: continue dfs(nx, x) for m in range(M+1)[::-1]: for mm in range(M+1): T = m+mm+2*t if T<M+1: dp[x][T] = max(dp[x][T], dp[x][m]+dp[nx][mm]) dfs(0) print(max(dp[0])) main()