結果
問題 | No.2232 Miser's Gift |
ユーザー | tktk_snsn |
提出日時 | 2023-03-03 21:28:51 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 170 ms / 2,000 ms |
コード長 | 1,253 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 82,116 KB |
実行使用メモリ | 81,092 KB |
最終ジャッジ日時 | 2024-09-17 22:20:52 |
合計ジャッジ時間 | 9,025 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 55 |
ソースコード
import sys import os import inspect input = sys.stdin.buffer.readline sys.setrecursionlimit(10 ** 7) inf = 10 ** 18 if os.getenv("TKTKLOCAL", False): def debug(*arg, sep=" ", end="\n"): print(*arg, sep=sep, end=end, file=sys.stderr) def debug_indent(*arg, sep=" ", end="\n", indent=" "): frame = inspect.currentframe().f_back par_func = inspect.getframeinfo(frame).function if par_func == "<module>": debug(*arg, sep=sep, end=end) return frame_stack = inspect.stack() if len(frame_stack) > 30: return depth = sum(f.function == par_func for f in frame_stack) debug(indent * (depth - 1), end="") debug(*arg, sep=sep, end=end) else: def debug(*arg, **kwarg): pass def debug_indent(*arg, **kwarg): pass def main(): N, W = map(int, input().split()) dp = [-inf] * (W + 1) dp[0] = 0 for _ in range(N): a, b = map(int, input().split()) for i in range(a, W+1)[::-1]: dp[i] = max(dp[i], dp[i-a] + b) debug(dp) for i in range(1, W+1): dp[i] = max(dp[i], dp[i-1]) wmax = dp[W] + 1 for i in range(1, W+1): print(wmax - dp[W - i]) main()