結果

問題 No.2200 Weird Shortest Path
ユーザー 👑 p-adicp-adic
提出日時 2023-05-31 13:52:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,566 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 49,404 KB
最終ジャッジ日時 2024-12-28 13:48:02
合計ジャッジ時間 36,000 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 34 ms
10,624 KB
testcase_04 AC 41 ms
10,752 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 32 ms
10,496 KB
testcase_08 AC 36 ms
10,752 KB
testcase_09 AC 35 ms
10,752 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 36 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 418 ms
22,784 KB
testcase_18 AC 781 ms
32,680 KB
testcase_19 AC 1,286 ms
45,776 KB
testcase_20 AC 1,276 ms
45,576 KB
testcase_21 AC 502 ms
25,984 KB
testcase_22 AC 689 ms
30,076 KB
testcase_23 AC 1,360 ms
47,500 KB
testcase_24 AC 230 ms
17,152 KB
testcase_25 AC 1,275 ms
45,292 KB
testcase_26 AC 1,350 ms
46,848 KB
testcase_27 AC 480 ms
24,576 KB
testcase_28 AC 1,018 ms
38,344 KB
testcase_29 AC 1,372 ms
47,608 KB
testcase_30 AC 1,357 ms
46,628 KB
testcase_31 AC 843 ms
33,472 KB
testcase_32 AC 1,461 ms
49,148 KB
testcase_33 AC 1,428 ms
49,144 KB
testcase_34 AC 1,429 ms
49,148 KB
testcase_35 AC 1,443 ms
49,404 KB
testcase_36 AC 1,427 ms
49,088 KB
testcase_37 AC 1,463 ms
49,020 KB
testcase_38 AC 1,489 ms
49,212 KB
testcase_39 AC 719 ms
32,256 KB
testcase_40 AC 1,141 ms
42,492 KB
testcase_41 AC 688 ms
29,056 KB
testcase_42 AC 1,103 ms
39,360 KB
testcase_43 AC 1,550 ms
49,088 KB
testcase_44 AC 1,566 ms
49,144 KB
testcase_45 AC 1,554 ms
49,148 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