結果

問題 No.4 おもりと天秤
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2015-06-01 18:10:07
言語 Ruby
(3.3.0)
結果
AC  
実行時間 521 ms / 5,000 ms
コード長 609 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-06-26 09:12:24
合計ジャッジ時間 5,385 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
12,032 KB
testcase_01 AC 93 ms
12,160 KB
testcase_02 AC 101 ms
12,160 KB
testcase_03 AC 97 ms
12,160 KB
testcase_04 AC 104 ms
12,160 KB
testcase_05 AC 326 ms
14,080 KB
testcase_06 AC 92 ms
12,032 KB
testcase_07 AC 320 ms
14,080 KB
testcase_08 AC 94 ms
12,032 KB
testcase_09 AC 521 ms
16,128 KB
testcase_10 AC 352 ms
14,464 KB
testcase_11 AC 97 ms
11,904 KB
testcase_12 AC 96 ms
11,904 KB
testcase_13 AC 95 ms
12,032 KB
testcase_14 AC 94 ms
12,160 KB
testcase_15 AC 98 ms
12,032 KB
testcase_16 AC 96 ms
12,160 KB
testcase_17 AC 94 ms
12,160 KB
testcase_18 AC 312 ms
14,080 KB
testcase_19 AC 300 ms
13,952 KB
testcase_20 AC 300 ms
13,824 KB
testcase_21 AC 285 ms
13,824 KB
testcase_22 AC 294 ms
13,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:18: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

# Here your code !

def solve(w, t)
    dp = {}
    dp[0] = Array.new(w.size + 1, 0)
    (1..t).each do |j|
        dp[j] = Array.new(w.size + 1, 0)
        w.each_with_index do |k, i|
            candiate = [dp[j][i], dp[j][i] + k ]
            candiate.push(dp[j - k][i] + k) if j >= k 
            candiate.reject! {|v| v > j }              
            dp[j][i + 1] = candiate.max
        end
    end
    dp[t].include?(t)
end

n = gets.to_i
w = gets.split.map(&:to_i)

total = w.inject(0, &:+)

if total.odd?
    puts "impossible"
elsif solve(w,total/2)
    puts "possible"
else
    puts "impossible"
end
0