結果

問題 No.1814 Uribo Road (Easy)
ユーザー MasKoaTSMasKoaTS
提出日時 2021-11-05 11:33:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,052 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 36,736 KB
最終ジャッジ日時 2024-11-21 22:58:47
合計ジャッジ時間 43,515 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
16,384 KB
testcase_01 AC 50 ms
16,384 KB
testcase_02 AC 31 ms
28,288 KB
testcase_03 AC 30 ms
16,256 KB
testcase_04 AC 30 ms
16,256 KB
testcase_05 AC 30 ms
16,256 KB
testcase_06 AC 32 ms
16,256 KB
testcase_07 AC 31 ms
29,696 KB
testcase_08 AC 30 ms
16,384 KB
testcase_09 AC 62 ms
16,384 KB
testcase_10 AC 48 ms
16,384 KB
testcase_11 AC 117 ms
31,232 KB
testcase_12 AC 276 ms
17,408 KB
testcase_13 AC 174 ms
31,488 KB
testcase_14 AC 375 ms
17,920 KB
testcase_15 AC 73 ms
11,904 KB
testcase_16 AC 106 ms
12,416 KB
testcase_17 AC 111 ms
12,288 KB
testcase_18 AC 86 ms
12,544 KB
testcase_19 AC 87 ms
12,288 KB
testcase_20 AC 1,575 ms
14,720 KB
testcase_21 AC 390 ms
11,776 KB
testcase_22 TLE -
testcase_23 AC 1,809 ms
15,360 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 255 ms
12,032 KB
testcase_33 AC 58 ms
11,264 KB
testcase_34 AC 43 ms
11,008 KB
testcase_35 AC 442 ms
12,928 KB
testcase_36 AC 91 ms
11,392 KB
testcase_37 AC 247 ms
12,032 KB
testcase_38 AC 580 ms
13,056 KB
testcase_39 AC 122 ms
11,520 KB
testcase_40 AC 249 ms
12,160 KB
testcase_41 TLE -
testcase_42 AC 1,133 ms
14,080 KB
testcase_43 AC 200 ms
11,776 KB
testcase_44 AC 673 ms
13,568 KB
testcase_45 AC 87 ms
11,392 KB
testcase_46 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import heapq

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

route = [[] for _ in [0]*N]
edge = [0]*M
for i in range(M):
	A,B,C = map(int,input().split())
	A -= 1;	B -= 1
	edge[i] = [A,B,C]
	route[A].append((B,C))
	route[B].append((A,C))

def dijkstra(route):
	dist = [[-1]*N for _ in [0]*N]
	for i in range(N):
		q = [(0,i)]
		cnt = 0
		while(q and cnt < N):
			d,v = heapq.heappop(q)
			if(dist[i][v] == -1):
				cnt += 1
				dist[i][v] = d
				for nv,nd in route[v]:
					heapq.heappush(q,(d + nd,nv))
	return dist

ans = float("inf")
rsum = sum(edge[i][2] for i in R)
dist = dijkstra(route)
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(edge[rlist[i]][0])
				path.append(edge[rlist[i]][1])
			else:
				path.append(edge[rlist[i]][1])
				path.append(edge[rlist[i]][0])
		path.append(N-1)
		for i in range(0,len(path)-1,2):
			s += dist[path[i]][path[i+1]]
		if(ans > s):
			ans = s

print(ans)
0