結果

問題 No.967 引き算をして門松列(その2)
ユーザー noriocnorioc
提出日時 2024-08-14 12:42:32
言語 Elixir
(1.16.2)
結果
TLE  
実行時間 -
コード長 1,053 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 62,916 KB
実行使用メモリ 55,768 KB
最終ジャッジ日時 2024-08-14 12:42:54
合計ジャッジ時間 18,962 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 561 ms
54,160 KB
testcase_01 AC 587 ms
54,168 KB
testcase_02 AC 555 ms
53,680 KB
testcase_03 AC 1,204 ms
54,492 KB
testcase_04 AC 1,218 ms
53,804 KB
testcase_05 AC 1,198 ms
53,892 KB
testcase_06 AC 1,178 ms
53,808 KB
testcase_07 AC 1,270 ms
53,936 KB
testcase_08 AC 1,742 ms
55,152 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    t = ii()
    for _ <- 1..t do
      [a, b, c, x, y, z] = li()
      case kadomatu(a, b, c) do
        [] -> -1
        res ->
          res
          |> Enum.map(fn {a1, b1, c1} -> x*(a-a1) + y*(b-b1) + z*(c-c1) end)
          |> Enum.min
      end
      |> IO.puts
    end
  end

  def kadomatu(a, b, c) do
    for {a, b, c} <- [{b, a, c}, {b, c, a}, {a, c, b}, {c, a, b}] do
      f(a, b, c)
    end
    |> List.flatten
    |> Enum.uniq
    |> Enum.filter(fn {x, y, z} -> a >= x and b >= y and c >= z end)
  end

  def f(1, _, _), do: []
  def f(_, 1, _), do: []
  def f(a, b, c) do
    cond do
      a <= b ->
        x = b - a + 1
        f(a, b-x, c)
      b <= c ->
        x = c - b + 1
        f(a, b, c-x)
      true ->
        [{a, c, b}, {b, c, a}, {b, a, c}, {c, a, b}]
    end
  end
end
0