結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-19 23:32:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 610 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 126,868 KB
最終ジャッジ日時 2024-09-19 23:33:23
合計ジャッジ時間 28,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 344 ms
90,172 KB
testcase_08 AC 1,118 ms
125,728 KB
testcase_09 AC 199 ms
82,456 KB
testcase_10 AC 490 ms
98,072 KB
testcase_11 AC 380 ms
91,036 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 35 ms
52,632 KB
testcase_47 AC 33 ms
52,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
S,G=map(int,input().split())
S-=1
G-=1
p=[tuple(map(int,input().split())) for i in range(n)]
e=[]
for i in range(m):
	s,g=map(int,input().split())
	s-=1
	g-=1
	sx,sy=p[s]
	gx,gy=p[g]
	d=((sx-gx)**2+(sy-gy)**2)**0.5
	e+=[(d,s,g)]
e.sort()

def root(x):
  p=x
  l=[p]
  while r[p]!=p:
    p=r[p]
    l+=[p]
  for p in l:
    r[p]=l[-1]
  return r[x]

def union(x,y):
  rx=root(x)
  ry=root(y)
  if rx==ry:
    return
  if rx>ry:
    rx,ry=ry,rx
  r[ry]=rx
  return

r=list(range(n))
C=0
for c,s,g in e:
	if root(s)!=root(g):
		union(s,g)
		C+=c
	if root(S)==root(G):
		break
print(C)
0