結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-10 09:38:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,884 ms / 2,000 ms
コード長 805 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 471,936 KB
最終ジャッジ日時 2024-09-26 00:44:43
合計ジャッジ時間 49,530 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
55,552 KB
testcase_01 AC 57 ms
61,824 KB
testcase_02 AC 77 ms
70,016 KB
testcase_03 AC 60 ms
64,512 KB
testcase_04 AC 55 ms
61,952 KB
testcase_05 AC 50 ms
55,808 KB
testcase_06 AC 73 ms
69,248 KB
testcase_07 AC 57 ms
61,824 KB
testcase_08 AC 70 ms
67,456 KB
testcase_09 AC 167 ms
86,784 KB
testcase_10 AC 128 ms
82,432 KB
testcase_11 AC 125 ms
82,432 KB
testcase_12 AC 437 ms
154,880 KB
testcase_13 AC 1,171 ms
352,768 KB
testcase_14 AC 282 ms
122,208 KB
testcase_15 AC 298 ms
125,440 KB
testcase_16 AC 400 ms
149,888 KB
testcase_17 AC 473 ms
167,500 KB
testcase_18 AC 51 ms
56,192 KB
testcase_19 AC 52 ms
55,808 KB
testcase_20 AC 51 ms
56,064 KB
testcase_21 AC 107 ms
81,536 KB
testcase_22 AC 104 ms
78,332 KB
testcase_23 AC 102 ms
79,616 KB
testcase_24 AC 1,712 ms
471,552 KB
testcase_25 AC 1,736 ms
471,552 KB
testcase_26 AC 1,705 ms
470,784 KB
testcase_27 AC 1,721 ms
471,296 KB
testcase_28 AC 1,638 ms
470,912 KB
testcase_29 AC 1,718 ms
471,680 KB
testcase_30 AC 50 ms
56,320 KB
testcase_31 AC 48 ms
55,808 KB
testcase_32 AC 108 ms
78,476 KB
testcase_33 AC 121 ms
80,572 KB
testcase_34 AC 127 ms
84,992 KB
testcase_35 AC 1,405 ms
471,296 KB
testcase_36 AC 1,430 ms
471,680 KB
testcase_37 AC 1,392 ms
471,552 KB
testcase_38 AC 1,759 ms
471,424 KB
testcase_39 AC 1,722 ms
471,296 KB
testcase_40 AC 1,492 ms
471,680 KB
testcase_41 AC 1,823 ms
471,680 KB
testcase_42 AC 1,884 ms
471,936 KB
testcase_43 AC 1,793 ms
471,168 KB
testcase_44 AC 1,811 ms
471,168 KB
testcase_45 AC 1,844 ms
471,552 KB
testcase_46 AC 1,703 ms
470,272 KB
testcase_47 AC 1,697 ms
470,400 KB
testcase_48 AC 1,633 ms
470,912 KB
testcase_49 AC 1,697 ms
470,784 KB
testcase_50 AC 1,547 ms
471,296 KB
testcase_51 AC 1,654 ms
470,656 KB
testcase_52 AC 1,163 ms
393,472 KB
testcase_53 AC 1,422 ms
471,040 KB
testcase_54 AC 1,666 ms
471,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N,K = map(int,input().split())
PD = [tuple(map(int,input().split())) for _ in range(N)]
PD.sort(reverse=True)

INF = (1<<60)

dp = [[[-INF]*(K+2) for i in range(N+1)] for j in range(2)]
dp[0][0][0] = 0

for i in range(N):
    
    p,d = PD[i]
    
    for k in range(2):
        
        for j in range(K+1):
            
            dp[k][i+1][j] = dp[k][i][j]
    
    
    for j in range(K+1):
        
        
        dp[0][i+1][min(j+p,K+1)] = max(dp[0][i][min(j+p,K+1)],dp[1][i][min(j+p,K+1)]+d)
        
        dp[1][i+1][min(j+p,K+1)] = max(dp[1][i][min(j+p,K+1)],dp[0][i][j] + d)
        
        
    
print(max(max(dp[0][-1][:K+1]),max(dp[1][-1][:K+1])))
0