結果

問題 No.281 門松と魔法(1)
コンテスト
ユーザー yuruhiya
提出日時 2020-10-31 11:33:25
言語 Crystal
(1.19.1)
コンパイル:
crystal build -Donline_judge -o a.out --release --no-debug _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 901 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 9,663 ms
コンパイル使用メモリ 339,896 KB
実行使用メモリ 1,254,548 KB
最終ジャッジ日時 2026-03-21 07:52:41
合計ジャッジ時間 12,612 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 49 WA * 4 RE * 2 TLE * 1 MLE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

lib C
  fun strtoll(s : UInt8*, p : UInt8**, b : Int32) : Int64
end

class String
  def to_i64
    C.strtoll(self, nil, 10)
  end
end

INF = 10i64 ** 9

# a -> less than b
def calc(a, b, d)
  if a < b
    0i64
  else
    res = (a - b) // d + 1
    {a - res*d, 0i64}.max < b ? res : INF
  end
end

def solve(a, b, c, d)
  a, b, c = [a, b, c].map { |i| {i, 0i64}.max }
  if [a, b, c].count { |i| i == 0 } >= 2
    INF
  elsif a == b
    {solve(a - d, b, c, d) + 1, solve(a, b - d, c, d) + 1}.min
  elsif a == c
    {solve(a - d, b, c, d) + 1, solve(a, b, c - d, d) + 1}.min
  elsif b == c
    {solve(a, b - d, c, d) + 1, solve(a, b, c - d, d) + 1}.min
  else
    if (b > a && b > c) || (b < a && b < c)
      0i64
    else
      {calc(a, b, d) + calc(c, b, d), calc(b, {a, c}.min, d)}.min
    end
  end
end

d, a, b, c = (1..4).map { read_line.to_i64 }
ans = solve(a, b, c, d)
puts ans < INF ? ans : -1
0