結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー anagohirameanagohirame
提出日時 2020-12-17 00:50:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 908 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 85,544 KB
最終ジャッジ日時 2024-09-20 05:40:26
合計ジャッジ時間 18,145 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,368 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 40 ms
52,608 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 52 ms
64,768 KB
testcase_06 AC 50 ms
65,920 KB
testcase_07 WA -
testcase_08 AC 140 ms
76,672 KB
testcase_09 AC 797 ms
80,740 KB
testcase_10 WA -
testcase_11 AC 642 ms
79,068 KB
testcase_12 AC 215 ms
77,632 KB
testcase_13 AC 391 ms
78,484 KB
testcase_14 AC 96 ms
76,416 KB
testcase_15 AC 123 ms
76,672 KB
testcase_16 AC 90 ms
76,144 KB
testcase_17 WA -
testcase_18 AC 84 ms
76,160 KB
testcase_19 WA -
testcase_20 AC 73 ms
76,520 KB
testcase_21 AC 548 ms
78,436 KB
testcase_22 AC 38 ms
52,352 KB
testcase_23 WA -
testcase_24 AC 36 ms
52,608 KB
testcase_25 AC 38 ms
52,480 KB
testcase_26 AC 39 ms
53,120 KB
testcase_27 AC 38 ms
52,736 KB
testcase_28 AC 100 ms
76,288 KB
testcase_29 AC 186 ms
76,800 KB
testcase_30 AC 55 ms
65,024 KB
testcase_31 AC 92 ms
76,048 KB
testcase_32 AC 40 ms
52,992 KB
testcase_33 AC 370 ms
77,108 KB
testcase_34 AC 271 ms
77,112 KB
testcase_35 AC 87 ms
76,456 KB
testcase_36 AC 68 ms
71,296 KB
testcase_37 AC 53 ms
64,384 KB
testcase_38 AC 95 ms
76,480 KB
testcase_39 AC 77 ms
74,880 KB
testcase_40 AC 37 ms
52,992 KB
testcase_41 WA -
testcase_42 AC 39 ms
52,736 KB
testcase_43 AC 141 ms
77,128 KB
testcase_44 AC 121 ms
77,360 KB
testcase_45 AC 1,191 ms
82,184 KB
testcase_46 AC 85 ms
76,116 KB
testcase_47 AC 339 ms
77,376 KB
testcase_48 AC 553 ms
80,168 KB
testcase_49 AC 100 ms
76,356 KB
testcase_50 AC 39 ms
52,736 KB
testcase_51 AC 38 ms
52,736 KB
testcase_52 AC 190 ms
77,352 KB
testcase_53 AC 135 ms
76,664 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 TLE -
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**18
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))
				ans = min(ans, c0 + dist[j] + c1)
	#print("-----")

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