結果

問題 No.2093 Shio Ramen
ユーザー ygd.ygd.
提出日時 2022-10-07 21:58:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 1,147 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-06-12 07:15:14
合計ジャッジ時間 7,069 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,136 KB
testcase_01 AC 32 ms
11,136 KB
testcase_02 AC 31 ms
11,136 KB
testcase_03 AC 31 ms
11,136 KB
testcase_04 AC 30 ms
11,136 KB
testcase_05 AC 32 ms
11,136 KB
testcase_06 AC 33 ms
11,136 KB
testcase_07 AC 30 ms
11,136 KB
testcase_08 AC 30 ms
11,136 KB
testcase_09 AC 130 ms
11,264 KB
testcase_10 AC 255 ms
11,264 KB
testcase_11 AC 46 ms
11,136 KB
testcase_12 AC 266 ms
11,136 KB
testcase_13 AC 297 ms
11,136 KB
testcase_14 AC 328 ms
11,136 KB
testcase_15 AC 249 ms
11,136 KB
testcase_16 AC 99 ms
11,136 KB
testcase_17 AC 408 ms
11,136 KB
testcase_18 AC 277 ms
11,392 KB
testcase_19 AC 335 ms
11,264 KB
testcase_20 AC 378 ms
11,136 KB
testcase_21 AC 360 ms
11,264 KB
testcase_22 AC 371 ms
11,392 KB
testcase_23 AC 258 ms
11,264 KB
testcase_24 AC 253 ms
11,264 KB
testcase_25 AC 260 ms
11,264 KB
testcase_26 AC 264 ms
11,264 KB
testcase_27 AC 256 ms
11,264 KB
testcase_28 AC 253 ms
11,264 KB
testcase_29 AC 253 ms
11,264 KB
testcase_30 AC 251 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
import math
import bisect
#import itertools
#import random
from heapq import heapify, heappop, heappush
from collections import defaultdict 
#from collections import deque
import copy #DeepCopy: hoge = [_[:] for _ in hogehoge]
#from functools import lru_cache
#@lru_cache(maxsize=None)
MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

def main():
    N,I = map(int,input().split()); INF = 1 << 30
    S = [] ; A= []
    for i in range(N):
        s,a = map(int,input().split())
        S.append(s)
        A.append(a)

    # dp[i][j]:i番目の塩ラーメンまで見て塩の濃さがjの時の味の濃さの最大値
    M = 1005
    dp = [-INF]*M
    dp[0] = 0

    for s,a in zip(S,A):
        p = copy.copy(dp)
        dp,p = p,dp
        for j in range(M):
            if j+s < M:
                dp[j+s] = max(dp[j+s], p[j] + a)
        # print(dp[:20])

    ans = max(dp[:I+1])
    print(ans)


if __name__ == '__main__':
    main()
0