結果

問題 No.247 線形計画問題もどき
ユーザー finefine
提出日時 2016-04-04 23:08:16
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,548 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 90,880 KB
最終ジャッジ日時 2024-07-07 11:14:21
合計ジャッジ時間 12,251 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 549 ms
53,376 KB
testcase_01 AC 70 ms
12,032 KB
testcase_02 AC 1,548 ms
90,880 KB
testcase_03 AC 70 ms
12,288 KB
testcase_04 AC 71 ms
12,032 KB
testcase_05 AC 69 ms
12,160 KB
testcase_06 AC 71 ms
12,160 KB
testcase_07 AC 120 ms
15,872 KB
testcase_08 AC 86 ms
13,568 KB
testcase_09 AC 70 ms
12,160 KB
testcase_10 AC 83 ms
13,568 KB
testcase_11 AC 70 ms
12,288 KB
testcase_12 AC 71 ms
12,160 KB
testcase_13 AC 72 ms
12,288 KB
testcase_14 AC 70 ms
12,288 KB
testcase_15 AC 70 ms
12,288 KB
testcase_16 AC 70 ms
12,032 KB
testcase_17 AC 442 ms
43,136 KB
testcase_18 AC 85 ms
12,544 KB
testcase_19 AC 888 ms
80,128 KB
testcase_20 AC 1,108 ms
86,784 KB
testcase_21 AC 586 ms
53,504 KB
testcase_22 AC 639 ms
59,008 KB
testcase_23 AC 544 ms
49,920 KB
testcase_24 AC 1,103 ms
80,000 KB
testcase_25 AC 851 ms
76,032 KB
testcase_26 AC 230 ms
25,984 KB
testcase_27 AC 355 ms
35,840 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:20: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

INF = 1000000
c = gets.to_i
n = gets.to_i
a = gets.split.map(&:to_i)
dp = Array.new(n + 1)
(n + 1).times{|i|
    dp[i] = Array.new(c + 1,INF)
    dp[i][0] = 0
    }

1.upto(n){|i|
    1.upto(a[i - 1] - 1){|j|
        dp[i][j] = dp[i - 1][j]
        }
    a[i - 1].upto(c){|j|
        dp[i][j] = [dp[i - 1][j], dp[i][j - a[i - 1]] + 1].min
        }
    }
if dp[n][c] == INF
    p -1
else
    p dp[n][c]
end
0