結果

問題 No.1814 Uribo Road (Easy)
ユーザー MasKoaTSMasKoaTS
提出日時 2021-10-05 14:20:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,014 ms / 2,000 ms
コード長 1,037 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 13,796 KB
最終ジャッジ日時 2024-05-01 17:25:21
合計ジャッジ時間 17,108 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 46 ms
10,752 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 51 ms
10,880 KB
testcase_10 AC 38 ms
10,880 KB
testcase_11 AC 53 ms
11,136 KB
testcase_12 AC 98 ms
11,264 KB
testcase_13 AC 66 ms
11,008 KB
testcase_14 AC 130 ms
11,392 KB
testcase_15 AC 452 ms
11,904 KB
testcase_16 AC 718 ms
12,160 KB
testcase_17 AC 821 ms
12,416 KB
testcase_18 AC 863 ms
12,288 KB
testcase_19 AC 860 ms
12,288 KB
testcase_20 AC 577 ms
12,416 KB
testcase_21 AC 698 ms
11,904 KB
testcase_22 AC 562 ms
13,056 KB
testcase_23 AC 638 ms
12,416 KB
testcase_24 AC 520 ms
12,928 KB
testcase_25 AC 505 ms
12,928 KB
testcase_26 AC 601 ms
13,312 KB
testcase_27 AC 662 ms
13,412 KB
testcase_28 AC 662 ms
13,412 KB
testcase_29 AC 664 ms
13,412 KB
testcase_30 AC 1,014 ms
13,796 KB
testcase_31 AC 1,013 ms
13,668 KB
testcase_32 AC 99 ms
11,136 KB
testcase_33 AC 39 ms
10,880 KB
testcase_34 AC 36 ms
10,752 KB
testcase_35 AC 116 ms
11,520 KB
testcase_36 AC 60 ms
11,008 KB
testcase_37 AC 93 ms
11,264 KB
testcase_38 AC 166 ms
11,648 KB
testcase_39 AC 63 ms
11,008 KB
testcase_40 AC 82 ms
11,264 KB
testcase_41 AC 572 ms
13,184 KB
testcase_42 AC 350 ms
11,904 KB
testcase_43 AC 87 ms
11,008 KB
testcase_44 AC 170 ms
11,776 KB
testcase_45 AC 47 ms
11,008 KB
testcase_46 AC 558 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import itertools

N,M,K = map(int,sys.stdin.readline().split())
R = [i-1 for i in map(int,sys.stdin.readline().split())]

INF = float("inf")
dist = [[INF]*N for _ in [0]*N]
route = [[0]*2 for _ in [0]*M]
for i in range(M):
	A,B,C = map(int,sys.stdin.readline().split())
	A -= 1;	B -= 1
	route[i] = [A,B,C]
	dist[A][B] = dist[B][A] = C

def warshall_floyd(dist):
	for i in range(N):
		dist[i][i] = 0
	for k in range(N):
		for i in range(N):
			for j in range(N):
				d = dist[i][k]+dist[k][j]
				if(dist[i][j] > d):
					dist[i][j] = d
	return 0

warshall_floyd(dist)
ans = INF
rsum = sum(route[i][2] for i in R)
for rlist in itertools.permutations(R):
	for bit in range(1 << K):
		s = rsum
		path = [0]
		for i in range(K):
			if(bit & (1 << i)):
				path.append(route[rlist[i]][0])
				path.append(route[rlist[i]][1])
			else:
				path.append(route[rlist[i]][1])
				path.append(route[rlist[i]][0])
		path.append(N-1)
		s += sum(dist[path[i]][path[i+1]] for i in range(0,len(path)-1,2))
		if(ans > s):
			ans = s

print(ans)
0