結果

問題 No.4 おもりと天秤
ユーザー penqenpenqen
提出日時 2021-03-14 02:50:59
言語 Elixir
(1.16.2)
結果
AC  
実行時間 684 ms / 5,000 ms
コード長 1,014 bytes
コンパイル時間 812 ms
コンパイル使用メモリ 63,012 KB
実行使用メモリ 74,792 KB
最終ジャッジ日時 2024-06-10 00:30:02
合計ジャッジ時間 15,348 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
54,476 KB
testcase_01 AC 526 ms
54,544 KB
testcase_02 AC 526 ms
54,064 KB
testcase_03 AC 529 ms
53,932 KB
testcase_04 AC 530 ms
54,184 KB
testcase_05 AC 596 ms
62,892 KB
testcase_06 AC 594 ms
53,808 KB
testcase_07 AC 628 ms
58,736 KB
testcase_08 AC 518 ms
54,408 KB
testcase_09 AC 684 ms
74,792 KB
testcase_10 AC 620 ms
67,596 KB
testcase_11 AC 528 ms
53,808 KB
testcase_12 AC 542 ms
53,936 KB
testcase_13 AC 527 ms
53,820 KB
testcase_14 AC 557 ms
53,928 KB
testcase_15 AC 595 ms
53,972 KB
testcase_16 AC 522 ms
53,932 KB
testcase_17 AC 524 ms
54,012 KB
testcase_18 AC 598 ms
58,644 KB
testcase_19 AC 598 ms
58,292 KB
testcase_20 AC 589 ms
58,412 KB
testcase_21 AC 586 ms
62,892 KB
testcase_22 AC 588 ms
58,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    n = IO.read(:line) |> String.trim() |> String.to_integer()
    wn = IO.read(:line) |> String.trim() |> String.split(" ") |> Enum.map(&String.to_integer/1)
    solve(n, wn) |> IO.puts()
  end

  def solve(n, wn) do
    with sum <- Enum.sum(wn),
      0 <- rem(sum, 2) do
        max = round(sum / 2)
        dp = %{ 0 => 0..max |> Enum.reduce(%{}, &Map.put(&2, &1, 0))}
        wn
        |> Enum.with_index()
        |> Enum.reduce(dp, fn {w, i}, dp ->
          dp_i = 0..max
          |> Enum.reduce(dp[i], fn j, acc ->
            dp_j = if w <= j do
              max(dp[i][j - w] + w, dp[i][j])
            else
              dp[i][j]
            end
            Map.put(acc, j, dp_j)
          end)
          Map.put(dp, i + 1, dp_i)
        end)
        |> (fn dp ->
          dp[n][max]
        end).()
        |> Kernel.==(max)
        |> if do
          :possible
        else
          :impossible
        end
    else
      _ ->
        :impossible
    end
  end
end
0