結果

問題 No.967 引き算をして門松列(その2)
ユーザー noriocnorioc
提出日時 2024-08-14 18:40:20
言語 Elixir
(1.16.2)
結果
AC  
実行時間 1,142 ms / 2,000 ms
コード長 1,240 bytes
コンパイル時間 2,328 ms
コンパイル使用メモリ 63,192 KB
実行使用メモリ 61,796 KB
最終ジャッジ日時 2024-08-14 18:40:34
合計ジャッジ時間 14,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 622 ms
54,820 KB
testcase_01 AC 617 ms
54,364 KB
testcase_02 AC 639 ms
54,976 KB
testcase_03 AC 737 ms
54,968 KB
testcase_04 AC 784 ms
55,276 KB
testcase_05 AC 769 ms
55,552 KB
testcase_06 AC 746 ms
55,236 KB
testcase_07 AC 844 ms
56,488 KB
testcase_08 AC 1,007 ms
58,092 KB
testcase_09 AC 1,065 ms
61,796 KB
testcase_10 AC 1,142 ms
59,208 KB
testcase_11 AC 1,088 ms
60,744 KB
権限があれば一括ダウンロードができます

ソースコード

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()
    # s = File.read!("/dev/stdin") |> String.split("\n", trim: true)
    s = IO.binread(:eof) |> String.split("\n", trim: true)
    for t <- tl(s) do
      [a, b, c, x, y, z] = t |> String.split |> Enum.map(&String.to_integer/1)
      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
    end
    |> Enum.join("\n")
    |> IO.puts
  end

  @spec kadomatu(any(), any(), any()) :: list()
  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 -> f(a, a-1, c)
      b <= c -> f(a, b, b-1)
      true ->
        [{a, c, b}, {b, c, a}, {b, a, c}, {c, a, b}]
    end
  end
end
0