結果

問題 No.2200 Weird Shortest Path
ユーザー 👑 p-adicp-adic
提出日時 2023-05-31 13:52:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,567 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 49,472 KB
最終ジャッジ日時 2024-06-08 21:04:35
合計ジャッジ時間 35,171 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 42 ms
10,880 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 37 ms
10,880 KB
testcase_09 AC 33 ms
10,752 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 35 ms
10,880 KB
testcase_16 AC 32 ms
10,624 KB
testcase_17 AC 418 ms
22,784 KB
testcase_18 AC 784 ms
32,768 KB
testcase_19 AC 1,273 ms
45,780 KB
testcase_20 AC 1,274 ms
45,576 KB
testcase_21 AC 521 ms
26,112 KB
testcase_22 AC 665 ms
30,076 KB
testcase_23 AC 1,331 ms
47,632 KB
testcase_24 AC 231 ms
17,408 KB
testcase_25 AC 1,278 ms
45,548 KB
testcase_26 AC 1,332 ms
47,100 KB
testcase_27 AC 469 ms
24,704 KB
testcase_28 AC 976 ms
38,344 KB
testcase_29 AC 1,361 ms
47,864 KB
testcase_30 AC 1,303 ms
46,756 KB
testcase_31 AC 831 ms
33,600 KB
testcase_32 AC 1,409 ms
49,148 KB
testcase_33 AC 1,444 ms
49,272 KB
testcase_34 AC 1,437 ms
49,280 KB
testcase_35 AC 1,428 ms
49,352 KB
testcase_36 AC 1,405 ms
49,148 KB
testcase_37 AC 1,434 ms
49,148 KB
testcase_38 AC 1,409 ms
49,472 KB
testcase_39 AC 694 ms
32,384 KB
testcase_40 AC 1,104 ms
42,612 KB
testcase_41 AC 688 ms
29,308 KB
testcase_42 AC 1,138 ms
39,364 KB
testcase_43 AC 1,567 ms
49,216 KB
testcase_44 AC 1,562 ms
49,396 KB
testcase_45 AC 1,548 ms
49,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
def J():
	return map(int,I().split())
N,M=J()
p=[i for i in R(N)]
c=[1]*N
def r(i):
	m=p[i]
	while i!=m:
		p[i]=i=p[m]
		m=p[i]
	return i
E=[0]*M
for i in R(M):
	a,b,w=J()
	E[i]=w,a-1,b-1
E.sort()
s=0
for i in R(M):
	w,a,b=E[i]
	a,b=r(a),r(b)
	if a!=b:
		s,c[b],p[a]=s+c[a]*c[b]*w,c[b]+c[a],b
print(s)
0