結果

問題 No.2200 Weird Shortest Path
ユーザー googol_S0googol_S0
提出日時 2023-01-28 19:32:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 637 ms / 2,000 ms
コード長 637 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 120,840 KB
最終ジャッジ日時 2024-06-28 22:03:00
合計ジャッジ時間 16,253 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,428 KB
testcase_01 AC 34 ms
53,396 KB
testcase_02 AC 36 ms
52,396 KB
testcase_03 AC 47 ms
62,160 KB
testcase_04 AC 63 ms
73,744 KB
testcase_05 AC 33 ms
52,200 KB
testcase_06 AC 40 ms
59,072 KB
testcase_07 AC 48 ms
60,404 KB
testcase_08 AC 66 ms
71,996 KB
testcase_09 AC 64 ms
70,808 KB
testcase_10 AC 38 ms
53,204 KB
testcase_11 AC 36 ms
53,912 KB
testcase_12 AC 38 ms
53,320 KB
testcase_13 AC 35 ms
52,992 KB
testcase_14 AC 35 ms
52,424 KB
testcase_15 AC 62 ms
70,864 KB
testcase_16 AC 37 ms
52,964 KB
testcase_17 AC 220 ms
87,408 KB
testcase_18 AC 361 ms
99,724 KB
testcase_19 AC 551 ms
103,724 KB
testcase_20 AC 581 ms
112,620 KB
testcase_21 AC 271 ms
96,624 KB
testcase_22 AC 314 ms
94,792 KB
testcase_23 AC 587 ms
107,896 KB
testcase_24 AC 153 ms
83,052 KB
testcase_25 AC 522 ms
104,776 KB
testcase_26 AC 563 ms
108,140 KB
testcase_27 AC 259 ms
92,904 KB
testcase_28 AC 431 ms
102,024 KB
testcase_29 AC 571 ms
109,632 KB
testcase_30 AC 552 ms
106,980 KB
testcase_31 AC 378 ms
100,016 KB
testcase_32 AC 628 ms
120,028 KB
testcase_33 AC 637 ms
120,240 KB
testcase_34 AC 617 ms
120,200 KB
testcase_35 AC 632 ms
120,840 KB
testcase_36 AC 617 ms
120,472 KB
testcase_37 AC 606 ms
119,684 KB
testcase_38 AC 633 ms
119,944 KB
testcase_39 AC 387 ms
113,056 KB
testcase_40 AC 326 ms
112,036 KB
testcase_41 AC 335 ms
100,124 KB
testcase_42 AC 315 ms
111,820 KB
testcase_43 AC 341 ms
117,764 KB
testcase_44 AC 339 ms
117,744 KB
testcase_45 AC 333 ms
117,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

belong=list()
group=list()
def init(X):
  global belong
  global group
  belong=list(range(X))
  group=[[i] for i in range(X)]

def unite(x,y):
  if len(group[belong[x]])<len(group[belong[y]]):
    x,y=y,x
  if belong[x]==belong[y]:
    return 0
  z=belong[y]
  V=len(group[z])*len(group[belong[x]])
  for i in range(len(group[z])):
    belong[group[z][-1]]=belong[x]
    group[belong[x]].append(group[z][-1])
    del group[z][-1]
  return V

N,M=map(int,input().split())
init(N)
X=[tuple(map(int,input().split())) for i in range(M)]
X.sort(key=lambda x:x[2])
ANS=0
for i in range(M):
  ANS+=X[i][2]*unite(X[i][0]-1,X[i][1]-1)
print(ANS)
0