結果

問題 No.4 おもりと天秤
ユーザー letrangerjpletrangerjp
提出日時 2017-05-14 11:35:31
言語 Ruby
(3.3.0)
結果
AC  
実行時間 576 ms / 5,000 ms
コード長 493 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 25,344 KB
最終ジャッジ日時 2024-06-26 10:17:17
合計ジャッジ時間 6,377 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,288 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 98 ms
12,416 KB
testcase_03 AC 90 ms
12,160 KB
testcase_04 AC 93 ms
12,416 KB
testcase_05 AC 448 ms
23,936 KB
testcase_06 AC 87 ms
12,288 KB
testcase_07 AC 480 ms
25,344 KB
testcase_08 AC 86 ms
12,160 KB
testcase_09 AC 93 ms
12,544 KB
testcase_10 AC 480 ms
25,216 KB
testcase_11 AC 89 ms
12,160 KB
testcase_12 AC 88 ms
12,288 KB
testcase_13 AC 89 ms
12,160 KB
testcase_14 AC 87 ms
12,288 KB
testcase_15 AC 86 ms
12,160 KB
testcase_16 AC 88 ms
12,288 KB
testcase_17 AC 87 ms
12,160 KB
testcase_18 AC 430 ms
23,296 KB
testcase_19 AC 426 ms
23,808 KB
testcase_20 AC 462 ms
25,216 KB
testcase_21 AC 576 ms
23,552 KB
testcase_22 AC 432 ms
23,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def f(n, weights)
  sum = weights.inject(0, :+)
  return false if sum.odd?

  dp = {}
  g = lambda{|i, w|
    return dp[[i,w]] if !dp[[i,w]].nil?

    dp[[i,w]] = if w == 0
      true
    elsif i >= n || w < 0
      false # falseを代入するから、hash未定義を真偽で判定する書き方は注意
    else
      g.(i+1, w) || g.(i+1, w-weights[i])
    end
  }
  g.(0, sum/2)
end

N = gets.to_i
W = gets.split.take(N).map(&:to_i).sort.reverse
puts f(N, W) ? :possible : :impossible
0