結果

問題 No.2602 Real Collider
ユーザー kotatsugamekotatsugame
提出日時 2024-01-12 22:12:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,592 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-09-27 22:39:57
合計ジャッジ時間 52,535 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,032 KB
testcase_01 AC 92 ms
12,288 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 98 ms
12,288 KB
testcase_04 AC 92 ms
12,160 KB
testcase_05 AC 92 ms
12,160 KB
testcase_06 AC 94 ms
12,160 KB
testcase_07 AC 94 ms
12,160 KB
testcase_08 AC 94 ms
12,160 KB
testcase_09 AC 95 ms
12,288 KB
testcase_10 AC 1,592 ms
77,312 KB
testcase_11 AC 661 ms
28,800 KB
testcase_12 AC 580 ms
38,400 KB
testcase_13 AC 310 ms
26,496 KB
testcase_14 AC 608 ms
38,528 KB
testcase_15 AC 523 ms
27,392 KB
testcase_16 AC 767 ms
38,144 KB
testcase_17 AC 830 ms
38,400 KB
testcase_18 AC 446 ms
28,416 KB
testcase_19 AC 472 ms
37,632 KB
testcase_20 AC 913 ms
47,744 KB
testcase_21 AC 409 ms
27,904 KB
testcase_22 AC 499 ms
29,184 KB
testcase_23 AC 364 ms
27,008 KB
testcase_24 AC 453 ms
28,672 KB
testcase_25 AC 470 ms
29,056 KB
testcase_26 AC 481 ms
27,392 KB
testcase_27 AC 529 ms
38,272 KB
testcase_28 AC 733 ms
38,272 KB
testcase_29 AC 471 ms
29,056 KB
testcase_30 AC 485 ms
37,760 KB
testcase_31 AC 778 ms
38,016 KB
testcase_32 AC 666 ms
28,800 KB
testcase_33 AC 778 ms
37,888 KB
testcase_34 AC 769 ms
38,016 KB
testcase_35 AC 521 ms
27,264 KB
testcase_36 AC 457 ms
27,392 KB
testcase_37 AC 849 ms
38,272 KB
testcase_38 AC 857 ms
38,272 KB
testcase_39 AC 843 ms
38,144 KB
testcase_40 AC 459 ms
26,368 KB
testcase_41 AC 942 ms
38,784 KB
testcase_42 AC 742 ms
37,760 KB
testcase_43 AC 702 ms
37,888 KB
testcase_44 AC 970 ms
46,336 KB
testcase_45 AC 620 ms
28,416 KB
testcase_46 AC 604 ms
27,904 KB
testcase_47 AC 853 ms
38,400 KB
testcase_48 AC 663 ms
28,672 KB
testcase_49 AC 590 ms
28,032 KB
testcase_50 AC 482 ms
26,880 KB
testcase_51 AC 505 ms
27,008 KB
testcase_52 AC 367 ms
21,248 KB
testcase_53 AC 785 ms
38,016 KB
testcase_54 AC 625 ms
28,416 KB
testcase_55 AC 693 ms
29,056 KB
testcase_56 AC 692 ms
28,800 KB
testcase_57 AC 640 ms
28,416 KB
testcase_58 AC 301 ms
20,480 KB
testcase_59 AC 770 ms
37,760 KB
testcase_60 AC 623 ms
28,928 KB
testcase_61 AC 550 ms
27,520 KB
testcase_62 AC 789 ms
38,272 KB
testcase_63 AC 882 ms
38,656 KB
testcase_64 AC 1,018 ms
49,280 KB
testcase_65 AC 544 ms
27,392 KB
testcase_66 AC 840 ms
38,272 KB
testcase_67 AC 445 ms
25,856 KB
testcase_68 AC 495 ms
27,136 KB
testcase_69 AC 375 ms
21,120 KB
testcase_70 AC 444 ms
25,856 KB
testcase_71 AC 543 ms
27,392 KB
testcase_72 AC 758 ms
37,888 KB
testcase_73 AC 639 ms
28,544 KB
testcase_74 AC 788 ms
38,016 KB
testcase_75 AC 831 ms
38,272 KB
testcase_76 AC 742 ms
37,760 KB
testcase_77 AC 765 ms
37,760 KB
testcase_78 AC 948 ms
38,784 KB
testcase_79 AC 792 ms
38,144 KB
testcase_80 AC 913 ms
38,656 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

Q=gets.to_i
Inputs=gets(p).split.map(&:to_r)
def read()
  x,y=Inputs.shift(2)
  return x+y*1i
end
def assert(f)
  raise "Error" unless f
end
x=[read(),read(),read()]
assert(x.uniq.size==3)
def cross(a,b)
  return a.real*b.imag-a.imag*b.real
end
def parallel(a,b)
  return cross(a,b)==0
end
o=0+0i
r=10**20
if !parallel(x[1]-x[0],x[2]-x[0])
  def line(x,y)
    a1=(x+y)/2
    t=y-x
    a2=Complex(a1.real-t.imag,a1.imag+t.real)
    return a1,a2
  end
  a1,a2=line(x[0],x[1])
  b1,b2=line(x[0],x[2])
  d1=cross(a2-a1,b1-a1)
  d2=-cross(a2-a1,b2-a1)
  assert(d1+d2!=0)
  o=b1+(b2-b1)*(d1/(d1+d2))
  r=x.map{|x|(x-o).abs2}
  assert(r.uniq.size==1)
  r=r.max
end
x.combination(2).each{|a,b|
  no=(a+b)/2
  nr=(a-b).abs2/4
  if nr<r&&x.all?{|t|(no-t).abs2<=nr}
    o,r=no,nr
  end
}
assert(Inputs.size==2*Q)
Q.times{
  d=(o-read()).abs2
  puts d<=r ? "Yes" : "No"
}
0