結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-10 09:41:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 667 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 711 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-09-26 00:45:01
合計ジャッジ時間 15,601 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
55,040 KB
testcase_01 AC 65 ms
56,192 KB
testcase_02 AC 67 ms
67,840 KB
testcase_03 AC 56 ms
62,848 KB
testcase_04 AC 48 ms
55,920 KB
testcase_05 AC 54 ms
55,296 KB
testcase_06 AC 64 ms
66,304 KB
testcase_07 AC 49 ms
56,192 KB
testcase_08 AC 64 ms
65,792 KB
testcase_09 AC 91 ms
74,496 KB
testcase_10 AC 86 ms
72,832 KB
testcase_11 AC 81 ms
72,192 KB
testcase_12 AC 166 ms
77,312 KB
testcase_13 AC 359 ms
78,080 KB
testcase_14 AC 135 ms
77,164 KB
testcase_15 AC 130 ms
76,928 KB
testcase_16 AC 151 ms
77,440 KB
testcase_17 AC 169 ms
77,312 KB
testcase_18 AC 52 ms
55,552 KB
testcase_19 AC 49 ms
56,192 KB
testcase_20 AC 48 ms
55,680 KB
testcase_21 AC 82 ms
72,832 KB
testcase_22 AC 79 ms
72,320 KB
testcase_23 AC 82 ms
72,320 KB
testcase_24 AC 410 ms
78,336 KB
testcase_25 AC 429 ms
78,336 KB
testcase_26 AC 456 ms
78,080 KB
testcase_27 AC 474 ms
78,336 KB
testcase_28 AC 356 ms
77,440 KB
testcase_29 AC 365 ms
77,696 KB
testcase_30 AC 49 ms
55,808 KB
testcase_31 AC 47 ms
55,552 KB
testcase_32 AC 84 ms
71,936 KB
testcase_33 AC 91 ms
76,416 KB
testcase_34 AC 94 ms
76,672 KB
testcase_35 AC 634 ms
78,208 KB
testcase_36 AC 628 ms
78,464 KB
testcase_37 AC 667 ms
77,824 KB
testcase_38 AC 476 ms
78,080 KB
testcase_39 AC 479 ms
78,720 KB
testcase_40 AC 496 ms
77,824 KB
testcase_41 AC 506 ms
78,208 KB
testcase_42 AC 489 ms
78,208 KB
testcase_43 AC 474 ms
78,208 KB
testcase_44 AC 490 ms
77,824 KB
testcase_45 AC 489 ms
78,080 KB
testcase_46 AC 377 ms
77,440 KB
testcase_47 AC 343 ms
78,080 KB
testcase_48 AC 359 ms
77,568 KB
testcase_49 AC 342 ms
77,568 KB
testcase_50 AC 408 ms
77,696 KB
testcase_51 AC 372 ms
77,696 KB
testcase_52 AC 261 ms
77,696 KB
testcase_53 AC 295 ms
77,696 KB
testcase_54 AC 205 ms
77,824 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(2)]
dp[0][0] = 0

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