結果

問題 No.94 圏外です。(EASY)
ユーザー gigurururugigurururu
提出日時 2014-12-07 23:03:04
言語 Ruby
(3.3.0)
結果
AC  
実行時間 672 ms / 5,000 ms
コード長 351 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,312 KB
最終ジャッジ日時 2024-06-26 07:24:16
合計ジャッジ時間 8,715 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,160 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 90 ms
11,904 KB
testcase_03 AC 90 ms
12,160 KB
testcase_04 AC 104 ms
12,416 KB
testcase_05 AC 117 ms
12,544 KB
testcase_06 AC 151 ms
13,312 KB
testcase_07 AC 211 ms
14,720 KB
testcase_08 AC 335 ms
17,536 KB
testcase_09 AC 548 ms
23,936 KB
testcase_10 AC 547 ms
23,680 KB
testcase_11 AC 551 ms
23,680 KB
testcase_12 AC 546 ms
23,936 KB
testcase_13 AC 551 ms
23,936 KB
testcase_14 AC 557 ms
24,064 KB
testcase_15 AC 551 ms
23,936 KB
testcase_16 AC 557 ms
23,936 KB
testcase_17 AC 557 ms
24,064 KB
testcase_18 AC 553 ms
24,064 KB
testcase_19 AC 672 ms
29,312 KB
testcase_20 AC 89 ms
12,288 KB
testcase_21 AC 89 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

l=(1..n=gets.to_i).map{Complex(*gets.split.map(&:to_i))}
d=(0...n).map{|i|(0...n).map{|j|(l[i]-l[j]).abs}}
$u=*0...n
def f n;n==$u[n]?n:$u[n]=f($u[n])end
n.times{|i|(i+1...n).each{|j|$u[f i]=$u[f j] if d[i][j]<=10}}
n.times{|i|f i}
p ($u.each.with_index.group_by{|a,i|a}.map{|k,v|v.map{|_,i|i}.combination(2).map{|i,j|d[i][j]}.max||0}.max||-1)+2
0