結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー ningenMeningenMe
提出日時 2020-12-18 02:35:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,254 ms / 2,000 ms
コード長 849 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 82,144 KB
最終ジャッジ日時 2024-09-21 08:50:04
合計ジャッジ時間 15,625 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 46 ms
52,608 KB
testcase_02 AC 43 ms
52,736 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 41 ms
52,608 KB
testcase_05 AC 55 ms
64,640 KB
testcase_06 AC 58 ms
65,792 KB
testcase_07 AC 114 ms
76,416 KB
testcase_08 AC 144 ms
77,492 KB
testcase_09 AC 852 ms
80,940 KB
testcase_10 AC 133 ms
76,680 KB
testcase_11 AC 700 ms
79,192 KB
testcase_12 AC 246 ms
77,980 KB
testcase_13 AC 431 ms
79,028 KB
testcase_14 AC 98 ms
76,284 KB
testcase_15 AC 124 ms
77,184 KB
testcase_16 AC 100 ms
76,160 KB
testcase_17 AC 96 ms
76,288 KB
testcase_18 AC 91 ms
76,416 KB
testcase_19 AC 355 ms
78,348 KB
testcase_20 AC 87 ms
76,516 KB
testcase_21 AC 557 ms
78,204 KB
testcase_22 AC 40 ms
52,736 KB
testcase_23 AC 40 ms
52,352 KB
testcase_24 AC 39 ms
52,864 KB
testcase_25 AC 39 ms
52,992 KB
testcase_26 AC 41 ms
52,608 KB
testcase_27 AC 41 ms
52,224 KB
testcase_28 AC 103 ms
76,544 KB
testcase_29 AC 183 ms
76,544 KB
testcase_30 AC 55 ms
63,872 KB
testcase_31 AC 93 ms
76,672 KB
testcase_32 AC 41 ms
52,224 KB
testcase_33 AC 343 ms
77,240 KB
testcase_34 AC 295 ms
77,600 KB
testcase_35 AC 98 ms
76,524 KB
testcase_36 AC 71 ms
70,272 KB
testcase_37 AC 55 ms
63,232 KB
testcase_38 AC 109 ms
76,724 KB
testcase_39 AC 77 ms
73,472 KB
testcase_40 AC 40 ms
53,248 KB
testcase_41 AC 39 ms
52,992 KB
testcase_42 AC 40 ms
52,736 KB
testcase_43 AC 151 ms
77,312 KB
testcase_44 AC 136 ms
76,928 KB
testcase_45 AC 1,254 ms
82,144 KB
testcase_46 AC 86 ms
75,904 KB
testcase_47 AC 352 ms
77,128 KB
testcase_48 AC 521 ms
79,636 KB
testcase_49 AC 106 ms
76,288 KB
testcase_50 AC 41 ms
52,352 KB
testcase_51 AC 39 ms
52,608 KB
testcase_52 AC 213 ms
77,064 KB
testcase_53 AC 154 ms
76,752 KB
testcase_54 AC 628 ms
79,312 KB
testcase_55 AC 634 ms
79,628 KB
testcase_56 AC 653 ms
79,448 KB
testcase_57 AC 872 ms
81,596 KB
testcase_58 AC 885 ms
81,004 KB
testcase_59 AC 886 ms
81,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

INF = 10**16
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(w * 3000 + v-1)
	if t == 0:
		adj[v-1].append(w * 3000 + u-1)

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:
		z = heappop(q)
		i, c0 = z % 3000, z // 3000
		if dist[i] != c0:
		    continue;
		for y in adj[i]:
			j, c1 = y % 3000, y // 3000
			if t == 0 and prev[i] == j:
				continue
			if dist[j] > c0 + c1:
				prev[j] = i
				dist[j] = c0 + c1
				heappush(q, j + (c0 + c1) * 3000)
			else:
				if t == 0 or j == x:
					ans = min(ans, c0 + dist[j] + c1)

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