結果

問題 No.2693 Sword
ユーザー dp_ijkdp_ijk
提出日時 2024-03-22 21:43:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-09-30 11:12:34
合計ジャッジ時間 2,922 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = float("INF")
N, P, K = map(int, input().split())

items = []
for _ in range(N):
   t, b = map(int, input().split())
   items.append((t, b))

dp = [-INF] * (N+1)
dp[0] = P

U = 10**18


def chmax(A, idx, val):
   if U < val:
      val = INF
   if A[idx] < val:
      A[idx] = val


for i, (t, b) in enumerate(items):
   ndp = dp[:]
   for j in range(i+1):
      if dp[j] < 0:
         continue
      if t == 1:
         chmax(ndp, j+1, dp[j] + b)
      elif t == 2:
         chmax(ndp, j+1, dp[j] * 2)
   dp = ndp


ans = dp[K]
if ans == INF:
   print(-1)
else:
   print(ans)
0