結果

問題 No.602 隠されていたゲーム2
ユーザー cympfhcympfh
提出日時 2017-12-03 17:53:33
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,467 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 25,216 KB
最終ジャッジ日時 2024-05-09 11:35:54
合計ジャッジ時間 6,519 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,160 KB
testcase_01 AC 88 ms
12,288 KB
testcase_02 AC 87 ms
12,416 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 AC 88 ms
12,160 KB
testcase_05 AC 87 ms
12,416 KB
testcase_06 AC 87 ms
12,416 KB
testcase_07 AC 88 ms
12,288 KB
testcase_08 AC 87 ms
12,288 KB
testcase_09 AC 87 ms
12,416 KB
testcase_10 AC 89 ms
12,288 KB
testcase_11 AC 87 ms
12,160 KB
testcase_12 AC 88 ms
12,288 KB
testcase_13 AC 89 ms
12,416 KB
testcase_14 AC 89 ms
12,288 KB
testcase_15 AC 87 ms
12,160 KB
testcase_16 AC 278 ms
13,952 KB
testcase_17 AC 135 ms
15,232 KB
testcase_18 AC 165 ms
20,736 KB
testcase_19 AC 182 ms
23,168 KB
testcase_20 AC 1,467 ms
25,216 KB
testcase_21 AC 1,407 ms
24,832 KB
testcase_22 AC 154 ms
21,888 KB
testcase_23 AC 168 ms
23,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:34: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:45: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:75: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:15: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

def index(xs, x)
  left = 0
  right = xs.size
  100.times do
    i = (left + right) / 2
    if xs[i] < x
      left = i
    else
      right = i
    end
  end
  left
end

n = gets.to_i
ds = gets.chomp.split.map(&:to_i).sort
x, y = gets.chomp.split.map(&:to_i)
r = x.abs + y.abs

if r.zero?

  p 0

elsif ds.any? {|d| d == r}

  p 1

elsif r.even?

  d_max = ds.max
  if r <= d_max + d_max
    p 2
  else
    p -1
  end

else

  es = ds.select(&:even?).sort
  os = ds.select(&:odd?).sort
  e_max = es.max
  o_max = os.max

  if e_max == nil or o_max == nil
    p -1
    exit
  end

  os.each do |d|
    diff = (r - d).abs
    i = index(es, diff)
    (i-3..i+3).each do |j|
      d2 = es[j]
      next if d2 == nil
      if (d - d2).abs <= r and r <= d2 + d2
        p 2
        exit
      end
    end
  end

  es.each do |d|
    diff = (r - d).abs
    i = index(os, diff)
    (i-3..i+3).each do |j|
      d2 = os[j]
      next if d2 == nil
      if (d - d2).abs <= r and r <= d2 + d2
        p 2
        exit
      end
    end
  end

  p -1

end
0