結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー yuruhiyayuruhiya
提出日時 2021-01-26 08:00:40
言語 Crystal
(1.11.2)
結果
AC  
実行時間 1,708 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 13,204 ms
コンパイル使用メモリ 298,536 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-30 22:15:37
合計ジャッジ時間 58,522 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 40 ms
6,944 KB
testcase_10 AC 27 ms
6,940 KB
testcase_11 AC 21 ms
6,940 KB
testcase_12 AC 260 ms
6,940 KB
testcase_13 AC 1,141 ms
6,944 KB
testcase_14 AC 171 ms
6,944 KB
testcase_15 AC 157 ms
6,944 KB
testcase_16 AC 273 ms
6,940 KB
testcase_17 AC 377 ms
6,944 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 19 ms
6,948 KB
testcase_22 AC 8 ms
6,940 KB
testcase_23 AC 12 ms
6,948 KB
testcase_24 AC 1,650 ms
6,944 KB
testcase_25 AC 1,708 ms
6,944 KB
testcase_26 AC 1,663 ms
6,940 KB
testcase_27 AC 1,647 ms
6,944 KB
testcase_28 AC 1,641 ms
6,944 KB
testcase_29 AC 1,578 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 10 ms
6,940 KB
testcase_33 AC 15 ms
6,940 KB
testcase_34 AC 34 ms
6,944 KB
testcase_35 AC 1,668 ms
6,940 KB
testcase_36 AC 1,589 ms
6,940 KB
testcase_37 AC 1,673 ms
6,944 KB
testcase_38 AC 1,621 ms
6,944 KB
testcase_39 AC 1,707 ms
6,944 KB
testcase_40 AC 1,635 ms
6,944 KB
testcase_41 AC 1,650 ms
6,940 KB
testcase_42 AC 1,642 ms
6,940 KB
testcase_43 AC 1,650 ms
6,940 KB
testcase_44 AC 1,662 ms
6,940 KB
testcase_45 AC 1,593 ms
6,944 KB
testcase_46 AC 1,568 ms
6,940 KB
testcase_47 AC 1,651 ms
6,940 KB
testcase_48 AC 1,638 ms
6,940 KB
testcase_49 AC 1,638 ms
6,940 KB
testcase_50 AC 1,675 ms
6,944 KB
testcase_51 AC 1,645 ms
6,940 KB
testcase_52 AC 1,247 ms
6,940 KB
testcase_53 AC 1,643 ms
6,940 KB
testcase_54 AC 1,456 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = read_line.split.map(&.to_i)
p, d = (1..n).map { read_line.split.map(&.to_i) }.sort.reverse.transpose
I = -10**9
dp = [[I, I]] * -~k
dp[0][0] = 0
n.times { |i|
  dp = (0..k).map { |j|
    [{dp[j][0], dp[j][1] + d[i]}.max, {dp[j][1], j >= p[i] ? dp[j - p[i]][0] + d[i] : I}.max]
  }
}
puts dp.max_of(&.max)
0