結果
問題 | No.417 チューリップバブル |
ユーザー | tktk_snsn |
提出日時 | 2021-01-10 18:11:20 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 970 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 82,376 KB |
実行使用メモリ | 73,772 KB |
最終ジャッジ日時 | 2024-11-21 07:01:58 |
合計ジャッジ時間 | 4,143 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
60,008 KB |
testcase_01 | AC | 47 ms
59,816 KB |
testcase_02 | AC | 47 ms
59,984 KB |
testcase_03 | WA | - |
testcase_04 | AC | 38 ms
53,804 KB |
testcase_05 | AC | 38 ms
52,668 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 48 ms
63,476 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 40 ms
57,692 KB |
testcase_33 | AC | 46 ms
62,852 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | RE | - |
ソースコード
import sys input = sys.stdin.buffer.readline sys.setrecursionlimit(10 ** 7) inf = 10**9 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)) topo = [] par = [-1] * N que = [0] while que: s = que.pop() topo.append(s) for t, c in g[s]: if t == par[s]: continue par[t] = s que.append(t) dp = [[0] for _ in range(N)] for s in topo[::-1]: for t, c in g[s]: if t == par[s]: continue c *= 2 merge = [0] * (len(dp[s]) + len(dp[t]) + c - 1) for i, vs in enumerate(dp[s]): for j, vt in enumerate(dp[t]): merge[i+j+c] = max(merge[i+j+c], vs + vt) if len(merge) > M + 1: merge = merge[:M + 1] dp[s] = merge u = U[s] dp[s] = [u + ds for ds in dp[s]] print(dp[s][M])