結果

問題 No.417 チューリップバブル
ユーザー maspymaspy
提出日時 2020-03-07 05:15:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,313 ms / 2,000 ms
コード長 1,138 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 44,536 KB
最終ジャッジ日時 2024-10-14 11:12:34
合計ジャッジ時間 30,846 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 503 ms
44,148 KB
testcase_01 AC 482 ms
44,144 KB
testcase_02 AC 481 ms
44,272 KB
testcase_03 AC 485 ms
44,276 KB
testcase_04 AC 478 ms
44,144 KB
testcase_05 AC 485 ms
44,020 KB
testcase_06 AC 475 ms
44,532 KB
testcase_07 AC 473 ms
44,016 KB
testcase_08 AC 507 ms
44,496 KB
testcase_09 AC 508 ms
44,396 KB
testcase_10 AC 525 ms
44,012 KB
testcase_11 AC 605 ms
44,400 KB
testcase_12 AC 598 ms
44,412 KB
testcase_13 AC 574 ms
44,528 KB
testcase_14 AC 669 ms
44,268 KB
testcase_15 AC 529 ms
44,400 KB
testcase_16 AC 521 ms
44,396 KB
testcase_17 AC 666 ms
44,276 KB
testcase_18 AC 687 ms
44,404 KB
testcase_19 AC 664 ms
44,024 KB
testcase_20 AC 871 ms
44,272 KB
testcase_21 AC 875 ms
44,016 KB
testcase_22 AC 879 ms
44,536 KB
testcase_23 AC 896 ms
44,148 KB
testcase_24 AC 486 ms
44,144 KB
testcase_25 AC 899 ms
44,148 KB
testcase_26 AC 564 ms
44,268 KB
testcase_27 AC 763 ms
44,276 KB
testcase_28 AC 937 ms
44,144 KB
testcase_29 AC 892 ms
44,528 KB
testcase_30 AC 886 ms
44,016 KB
testcase_31 AC 870 ms
44,404 KB
testcase_32 AC 482 ms
44,404 KB
testcase_33 AC 497 ms
44,400 KB
testcase_34 AC 700 ms
44,140 KB
testcase_35 AC 1,313 ms
44,144 KB
testcase_36 AC 1,287 ms
44,400 KB
testcase_37 AC 1,301 ms
44,140 KB
testcase_38 AC 1,270 ms
44,404 KB
testcase_39 AC 1,307 ms
44,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

# %%
N, M = map(int, readline().split())
U = [int(readline()) for _ in range(N)]
m = map(int, read().split())
ABC = zip(m, m, m)

# %%
graph = [[] for _ in range(N)]
for a, b, c in ABC:
    graph[a].append((b, c))
    graph[b].append((a, c))

# %%
root = 0
parent = [0] * N
order = []
stack = [root]
while stack:
    x = stack.pop()
    order.append(x)
    for y, _ in graph[x]:
        if y == parent[x]:
            continue
        parent[y] = x
        stack.append(y)

M //= 2

# %%


def merge(A, B):
    C = np.zeros(M + 1, np.int64)
    for i, x in enumerate(A):
        np.maximum(C[i:], B[: M + 1 - i] + x, out=C[i:])
    return C


# %%
dp = [None] * N
for v in order[::-1]:
    A = np.zeros(M + 1, np.int64)
    A[0] = U[v]
    for w, cost in graph[v]:
        if cost > M or w == parent[v]:
            continue
        B = np.zeros(M + 1, np.int64)
        B[cost: M + 1] = dp[w][: M + 1 - cost]
        A = merge(A, B)
    dp[v] = A


# %%
print(dp[0].max())
0