結果

問題 No.1812 Uribo Road
ユーザー MasKoaTSMasKoaTS
提出日時 2022-01-13 22:48:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,194 ms / 5,000 ms
コード長 1,873 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 13,184 KB
実行使用メモリ 35,968 KB
最終ジャッジ日時 2024-11-17 16:52:46
合計ジャッジ時間 23,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,776 KB
testcase_01 AC 31 ms
11,776 KB
testcase_02 AC 31 ms
11,904 KB
testcase_03 AC 614 ms
17,920 KB
testcase_04 AC 30 ms
11,776 KB
testcase_05 AC 29 ms
11,904 KB
testcase_06 AC 29 ms
11,776 KB
testcase_07 AC 70 ms
12,416 KB
testcase_08 AC 58 ms
12,288 KB
testcase_09 AC 74 ms
12,544 KB
testcase_10 AC 55 ms
12,288 KB
testcase_11 AC 47 ms
12,160 KB
testcase_12 AC 1,131 ms
32,640 KB
testcase_13 AC 842 ms
32,000 KB
testcase_14 AC 811 ms
31,104 KB
testcase_15 AC 823 ms
20,320 KB
testcase_16 AC 504 ms
24,192 KB
testcase_17 AC 1,514 ms
25,200 KB
testcase_18 AC 1,828 ms
22,780 KB
testcase_19 AC 2,067 ms
30,208 KB
testcase_20 AC 2,039 ms
30,464 KB
testcase_21 AC 2,063 ms
35,840 KB
testcase_22 AC 2,194 ms
35,968 KB
testcase_23 AC 144 ms
13,312 KB
testcase_24 AC 31 ms
11,904 KB
testcase_25 AC 210 ms
18,176 KB
testcase_26 AC 62 ms
12,288 KB
testcase_27 AC 1,210 ms
18,488 KB
testcase_28 AC 356 ms
20,608 KB
testcase_29 AC 29 ms
11,776 KB
testcase_30 AC 159 ms
13,056 KB
testcase_31 AC 1,411 ms
23,040 KB
testcase_32 AC 79 ms
12,544 KB
testcase_33 AC 899 ms
22,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as iter
import collections as coll
import heapq as hq
import bisect as bis
from decimal import Decimal as dec
from copy import deepcopy as dcopy
import math
import sys
sys.setrecursionlimit(10**6)
def input():
    return sys.stdin.readline().rstrip()
def getN():
	return int(sys.stdin.readline())
def getNs():
	return map(int,sys.stdin.readline().split())
def getList():
	return list(map(int,sys.stdin.readline().split()))
def strinps(n):
	return [sys.stdin.readline().rstrip() for _ in range(n)]
pi = 3.141592653589793
mod = 10**9+7
MOD = 998244353
INF = math.inf
dx = [1,0,-1,0];	dy = [0,1,0,-1]


"""
Main Code
"""

N, M, K = getNs()
R = [i - 1 for i in getNs()]
S = set(R)

route = [[] for _ in [0] * N]
edge = []
for _ in [0] * M:
	a, b, c = getNs()
	a -= 1;	b -= 1
	edge.append((a, b, c))
	route[a].append((b,c))
	route[b].append((a,c))

def dijkstra(s):
	path = [-1] * N
	que = [(0, s)]
	while(que):
		d, v = hq.heappop(que)
		if(path[v] != -1):
			continue
		path[v] = d
		for nv, nd in route[v]:
			hq.heappush(que, (d + nd, nv))
	return path

dist = [[] for _ in [0] * N]
T = set([0, N - 1])
for i in S:
	T.add(edge[i][0])
	T.add(edge[i][1])
for i in T:
	dist[i] = dijkstra(i)

dp = [[[INF] * 2 for _ in [0] * K] for _ in [0] * (1 << K)]
for i in range(K):
	for j in range(2):
		dp[1 << i][i][j] = dist[0][edge[R[i]][j ^ 1]] + edge[R[i]][2]
for bit in range(1, 1 << K):
	for s in range(K):
		if not((bit >> s) & 1):
			continue
		for t in range(K):
			if((bit >> t) & 1):
				continue
			for x in range(2):
				for y in range(2):
					b = bit | (1 << t)
					p = edge[R[s]][x]
					q = edge[R[t]][y ^ 1]
					d = dp[bit][s][x] + dist[p][q] + edge[R[t]][2]
					if(dp[b][t][y] > d):
						dp[b][t][y] = d
ans = INF
for i in range(K):
	for j in range(2):
		p = edge[R[i]][j]
		d = dp[-1][i][j] + dist[p][N - 1]
		if(ans > d):
			ans = d
print(ans)
0