結果

問題 No.4 おもりと天秤
ユーザー tshigitshigi
提出日時 2016-08-01 15:51:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 515 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-06-26 09:37:25
合計ジャッジ時間 3,590 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
12,160 KB
testcase_01 AC 94 ms
12,160 KB
testcase_02 AC 95 ms
12,160 KB
testcase_03 AC 95 ms
12,160 KB
testcase_04 AC 93 ms
12,288 KB
testcase_05 AC 127 ms
13,824 KB
testcase_06 AC 93 ms
12,160 KB
testcase_07 AC 126 ms
14,336 KB
testcase_08 AC 91 ms
12,160 KB
testcase_09 AC 91 ms
12,160 KB
testcase_10 AC 134 ms
14,848 KB
testcase_11 AC 94 ms
12,288 KB
testcase_12 AC 91 ms
12,288 KB
testcase_13 AC 91 ms
12,160 KB
testcase_14 AC 97 ms
12,416 KB
testcase_15 AC 95 ms
12,160 KB
testcase_16 AC 94 ms
12,160 KB
testcase_17 AC 93 ms
12,288 KB
testcase_18 AC 142 ms
15,104 KB
testcase_19 AC 122 ms
13,824 KB
testcase_20 AC 120 ms
13,696 KB
testcase_21 AC 120 ms
13,824 KB
testcase_22 AC 127 ms
14,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

inputs = STDIN.readlines.map(&:chomp)
N = inputs[0].to_i
Ws = inputs[1].split(/\s+/).map(&:to_i)

total = Ws.inject(:+)
unless total % 2 == 0
  puts 'impossible'
  exit
end

goal = total / 2
memos = Array.new(N + 1) { Hash.new }

def dp(i, g, memos)
  if g == 0
    res = true
  elsif i == N || g < 0
    res = false
  elsif memos[i].key?(g)
    res = memos[i][g]
  else
    res = dp(i + 1, g, memos) || dp(i + 1, g - Ws[i], memos)
  end
  memos[i][g] = res
end

puts dp(0, goal, memos) ? 'possible' : 'impossible'
0