結果

問題 No.2200 Weird Shortest Path
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-03 12:56:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,037 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 109,272 KB
最終ジャッジ日時 2024-11-03 12:56:50
合計ジャッジ時間 29,677 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,156 KB
testcase_01 AC 38 ms
53,540 KB
testcase_02 AC 39 ms
53,792 KB
testcase_03 AC 54 ms
62,524 KB
testcase_04 AC 83 ms
76,604 KB
testcase_05 AC 37 ms
52,820 KB
testcase_06 AC 42 ms
53,944 KB
testcase_07 AC 52 ms
62,532 KB
testcase_08 AC 83 ms
76,672 KB
testcase_09 AC 76 ms
74,540 KB
testcase_10 AC 40 ms
53,428 KB
testcase_11 AC 38 ms
52,472 KB
testcase_12 AC 40 ms
53,504 KB
testcase_13 AC 38 ms
53,232 KB
testcase_14 AC 39 ms
54,056 KB
testcase_15 AC 75 ms
73,780 KB
testcase_16 AC 38 ms
53,376 KB
testcase_17 AC 338 ms
85,492 KB
testcase_18 AC 551 ms
94,468 KB
testcase_19 AC 975 ms
107,896 KB
testcase_20 AC 932 ms
106,500 KB
testcase_21 AC 378 ms
88,284 KB
testcase_22 AC 523 ms
92,164 KB
testcase_23 AC 999 ms
108,896 KB
testcase_24 AC 222 ms
82,340 KB
testcase_25 AC 918 ms
107,348 KB
testcase_26 AC 971 ms
108,264 KB
testcase_27 AC 383 ms
86,888 KB
testcase_28 AC 712 ms
99,336 KB
testcase_29 AC 1,006 ms
108,640 KB
testcase_30 AC 1,010 ms
108,232 KB
testcase_31 AC 604 ms
95,496 KB
testcase_32 AC 1,028 ms
108,880 KB
testcase_33 AC 1,028 ms
108,636 KB
testcase_34 AC 995 ms
109,012 KB
testcase_35 AC 1,009 ms
109,136 KB
testcase_36 AC 1,026 ms
108,636 KB
testcase_37 AC 1,034 ms
109,260 KB
testcase_38 AC 1,037 ms
109,272 KB
testcase_39 AC 489 ms
93,184 KB
testcase_40 AC 671 ms
106,720 KB
testcase_41 AC 459 ms
92,704 KB
testcase_42 AC 646 ms
106,832 KB
testcase_43 AC 1,034 ms
105,756 KB
testcase_44 AC 1,028 ms
106,260 KB
testcase_45 AC 1,014 ms
105,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
e=[]
for i in range(m):
  a,b,c=map(int,input().split())
  a-=1
  b-=1
  e+=[(c,a,b)]

g=0

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):
  global g,c
  rx=root(x)
  ry=root(y)
  if rx==ry:
    return
  if rx>ry:
    rx,ry=ry,rx
  r[ry]=rx
  g+=c*v[rx]*v[ry]
  v[rx]+=v[ry]
  return

r=list(range(n))
v=[1]*n

for c,a,b in sorted(e):
  union(a,b)

print(g)
0