結果

問題 No.974 最後の日までに
ユーザー maspymaspy
提出日時 2020-04-01 01:08:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,165 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 159,520 KB
最終ジャッジ日時 2024-06-25 15:43:12
合計ジャッジ時間 87,024 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,007 ms
157,668 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 60 ms
62,464 KB
testcase_26 AC 61 ms
63,744 KB
testcase_27 AC 1,848 ms
137,516 KB
testcase_28 TLE -
testcase_29 AC 46 ms
51,968 KB
testcase_30 TLE -
testcase_31 AC 47 ms
52,480 KB
testcase_32 AC 47 ms
52,608 KB
testcase_33 AC 1,505 ms
124,564 KB
testcase_34 TLE -
testcase_35 AC 47 ms
52,352 KB
testcase_36 AC 49 ms
52,352 KB
testcase_37 TLE -
testcase_38 AC 47 ms
52,408 KB
testcase_39 AC 47 ms
52,224 KB
testcase_40 AC 1,384 ms
137,552 KB
testcase_41 AC 1,818 ms
156,404 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 1,854 ms
137,148 KB
testcase_45 AC 1,509 ms
124,892 KB
testcase_46 AC 46 ms
52,608 KB
testcase_47 AC 47 ms
52,224 KB
testcase_48 AC 47 ms
52,096 KB
testcase_49 AC 46 ms
52,224 KB
testcase_50 AC 46 ms
52,224 KB
testcase_51 AC 46 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

W = int(readline())
m = map(int, read().split())
ABC = tuple(zip(m, m, m))


def gen_all_patterns(L, R):
    """L 日目約束なしの状態から、R日目約束なしの状態へ"""
    n = R - L
    dp = [[] for _ in range(n + 1)]
    dp[0] = [(0, 0)]
    for i, (a, b, c) in enumerate(ABC[L:R]):
        dp[i + 1] += [(x + a, y) for x, y in dp[i]]
        if i:
            dp[i + 1] += [(x - c, y + b) for x, y in dp[i - 1]]
    P = dp[-1]
    P.sort()
    Q = []
    for x, y in P:
        while Q and Q[-1][0] <= x and Q[-1][1] <= y:
            Q.pop()
        Q.append((x, y))
    return Q


def solve(n):
    """ n日目約束なしを経由するパターンを解く """
    P = gen_all_patterns(0, n)[::-1]
    Q = gen_all_patterns(n, W)[::-1]
    for qx, qy in Q:
        while P and P[-1][0] + qx < 0:
            P.pop()
        if not P:
            return
        yield P[-1][1] + qy


answer = 0
for n in range(W // 2, W // 2 + 2):
    x = max(solve(n))
    if answer < x:
        answer = x
print(answer)
0