結果

問題 No.168 ものさし
ユーザー gigurururugigurururu
提出日時 2015-04-01 21:54:37
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,586 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 46,720 KB
最終ジャッジ日時 2024-06-06 14:57:23
合計ジャッジ時間 12,268 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 574 ms
20,608 KB
testcase_01 AC 79 ms
12,160 KB
testcase_02 AC 80 ms
12,032 KB
testcase_03 AC 81 ms
12,288 KB
testcase_04 AC 82 ms
12,032 KB
testcase_05 AC 79 ms
12,032 KB
testcase_06 AC 79 ms
12,160 KB
testcase_07 AC 78 ms
12,416 KB
testcase_08 AC 79 ms
12,288 KB
testcase_09 AC 95 ms
12,544 KB
testcase_10 AC 118 ms
13,056 KB
testcase_11 AC 264 ms
19,712 KB
testcase_12 AC 829 ms
37,120 KB
testcase_13 AC 1,146 ms
46,592 KB
testcase_14 AC 939 ms
46,592 KB
testcase_15 AC 82 ms
12,288 KB
testcase_16 AC 90 ms
12,288 KB
testcase_17 AC 107 ms
12,416 KB
testcase_18 AC 148 ms
13,440 KB
testcase_19 AC 1,586 ms
44,928 KB
testcase_20 AC 1,511 ms
46,592 KB
testcase_21 AC 1,425 ms
46,720 KB
testcase_22 AC 1,393 ms
46,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

UF=Hash.new{|_,k|k}
def u a,b;UF[f a]=UF[f b]end
def f c;c==UF[c]?c:UF[c]=f(UF[c])end

n=gets.to_i
t=(1..n).map{|i|[i]+gets.split.map(&:to_i)}
l=t.combination(2).map{|(i,ix,iy),(j,jx,jy)|[(ix-jx)**2+(iy-jy)**2,i,j]}
_,tx,ty=t[0]
_,ux,uy=t[n-1]
mx=(tx-ux)**2+(ty-uy)**2
mn=l.map(&:first).min
p (1..200000000).bsearch{|a|
  b=(a*10)**2
  if mn>b
    false
  elsif mx<=b
    true
  else
    UF.clear
    tmn=2000000000
    tmx=10
    l.each{|d,i,j|
      if b>=d
        u(i,j)
        tmx=d if tmx<d
      else
        tmn=d if tmn>d
      end
    }
    if ret=f(1)==f(n)
      mx=tmx if mx>tmx
    else
      mn=tmn if mn<tmn
    end
    ret
  end
}*10
0