結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー anagohirameanagohirame
提出日時 2020-12-17 00:54:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 934 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 81,640 KB
実行使用メモリ 82,492 KB
最終ジャッジ日時 2023-10-20 10:10:55
合計ジャッジ時間 14,398 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,816 KB
testcase_01 AC 40 ms
53,468 KB
testcase_02 AC 40 ms
53,468 KB
testcase_03 AC 40 ms
53,468 KB
testcase_04 AC 40 ms
53,468 KB
testcase_05 AC 49 ms
65,284 KB
testcase_06 AC 50 ms
67,332 KB
testcase_07 AC 112 ms
76,116 KB
testcase_08 AC 151 ms
76,624 KB
testcase_09 AC 900 ms
80,412 KB
testcase_10 AC 125 ms
76,480 KB
testcase_11 AC 697 ms
79,032 KB
testcase_12 AC 233 ms
77,232 KB
testcase_13 AC 429 ms
78,016 KB
testcase_14 AC 104 ms
76,128 KB
testcase_15 AC 139 ms
76,592 KB
testcase_16 AC 101 ms
75,924 KB
testcase_17 AC 96 ms
76,040 KB
testcase_18 AC 91 ms
75,904 KB
testcase_19 AC 347 ms
77,656 KB
testcase_20 AC 80 ms
75,844 KB
testcase_21 AC 612 ms
78,176 KB
testcase_22 AC 41 ms
53,468 KB
testcase_23 AC 41 ms
53,468 KB
testcase_24 AC 40 ms
53,468 KB
testcase_25 AC 41 ms
53,468 KB
testcase_26 AC 40 ms
53,468 KB
testcase_27 AC 40 ms
53,468 KB
testcase_28 AC 109 ms
76,200 KB
testcase_29 AC 194 ms
76,304 KB
testcase_30 AC 59 ms
66,416 KB
testcase_31 AC 97 ms
75,800 KB
testcase_32 AC 41 ms
53,468 KB
testcase_33 AC 381 ms
77,040 KB
testcase_34 AC 293 ms
76,996 KB
testcase_35 AC 96 ms
75,924 KB
testcase_36 AC 76 ms
72,680 KB
testcase_37 AC 58 ms
66,436 KB
testcase_38 AC 104 ms
76,036 KB
testcase_39 AC 82 ms
74,776 KB
testcase_40 AC 41 ms
53,468 KB
testcase_41 AC 41 ms
53,468 KB
testcase_42 AC 40 ms
53,468 KB
testcase_43 AC 156 ms
76,952 KB
testcase_44 AC 133 ms
76,968 KB
testcase_45 AC 1,355 ms
82,196 KB
testcase_46 AC 91 ms
75,740 KB
testcase_47 AC 362 ms
76,884 KB
testcase_48 AC 617 ms
79,824 KB
testcase_49 AC 108 ms
76,152 KB
testcase_50 AC 43 ms
53,468 KB
testcase_51 AC 41 ms
53,468 KB
testcase_52 AC 211 ms
77,076 KB
testcase_53 AC 145 ms
76,304 KB
testcase_54 TLE -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
import sys
def input():
	return sys.stdin.buffer.readline()[:-1]

def enc(pos, cost):
	return cost * 10000 + pos

def dec(x):
	return x % 10000, x // 10000

INF = 10**15
t = int(input())
n, m = map(int, input().split())
adj = [[] for _ in range(n)]
for _ in range(m):
	u, v, w = map(int, input().split())
	adj[u-1].append(enc(v-1, w))
	if t == 0:
		adj[v-1].append(enc(u-1, w))

ans = INF
for x in range(n):
	dist = [INF for _ in range(n)]
	prev = [-1 for _ in range(n)]
	dist[x] = 0
	q = [x]
	while q:
		i, c0 = dec(heappop(q))
		#print(i, c0)
		for y in adj[i]:
			j, c1 = dec(y)
			if t == 0 and prev[i] == j:
				continue
			if dist[j] > c0 + c1:
				prev[j] = i
				dist[j] = c0 + c1
				heappush(q, enc(j, c0 + c1))
			else:
				#print("! " + str(j) + " " + str(c1))
				if t == 0 or j == x:
					ans = min(ans, c0 + dist[j] + c1)
	#print("-----")

if ans == INF:
	print(-1)
else:
	print(ans)
0