結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-30 23:28:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 856 ms / 2,000 ms
コード長 952 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 82,740 KB
最終ジャッジ日時 2024-10-08 07:38:07
合計ジャッジ時間 14,203 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,552 KB
testcase_01 AC 36 ms
53,408 KB
testcase_02 AC 37 ms
52,952 KB
testcase_03 AC 38 ms
53,980 KB
testcase_04 AC 38 ms
53,152 KB
testcase_05 AC 37 ms
54,196 KB
testcase_06 AC 37 ms
54,172 KB
testcase_07 AC 61 ms
76,280 KB
testcase_08 AC 90 ms
76,372 KB
testcase_09 AC 616 ms
79,144 KB
testcase_10 AC 73 ms
76,268 KB
testcase_11 AC 540 ms
79,100 KB
testcase_12 AC 181 ms
78,304 KB
testcase_13 AC 329 ms
78,800 KB
testcase_14 AC 42 ms
62,884 KB
testcase_15 AC 86 ms
76,924 KB
testcase_16 AC 151 ms
76,904 KB
testcase_17 AC 53 ms
70,348 KB
testcase_18 AC 52 ms
67,864 KB
testcase_19 AC 368 ms
78,692 KB
testcase_20 AC 44 ms
61,588 KB
testcase_21 AC 684 ms
79,744 KB
testcase_22 AC 49 ms
53,788 KB
testcase_23 AC 38 ms
53,012 KB
testcase_24 AC 37 ms
53,564 KB
testcase_25 AC 37 ms
53,500 KB
testcase_26 AC 37 ms
53,240 KB
testcase_27 AC 37 ms
52,744 KB
testcase_28 AC 51 ms
68,744 KB
testcase_29 AC 137 ms
77,068 KB
testcase_30 AC 53 ms
63,364 KB
testcase_31 AC 72 ms
76,000 KB
testcase_32 AC 37 ms
53,500 KB
testcase_33 AC 303 ms
77,276 KB
testcase_34 AC 183 ms
77,032 KB
testcase_35 AC 131 ms
76,932 KB
testcase_36 AC 111 ms
76,460 KB
testcase_37 AC 97 ms
76,340 KB
testcase_38 AC 131 ms
76,896 KB
testcase_39 AC 118 ms
76,472 KB
testcase_40 AC 38 ms
54,364 KB
testcase_41 AC 38 ms
53,872 KB
testcase_42 AC 38 ms
54,224 KB
testcase_43 AC 116 ms
77,304 KB
testcase_44 AC 102 ms
77,000 KB
testcase_45 AC 856 ms
80,264 KB
testcase_46 AC 71 ms
76,028 KB
testcase_47 AC 158 ms
77,304 KB
testcase_48 AC 446 ms
79,476 KB
testcase_49 AC 85 ms
76,000 KB
testcase_50 AC 37 ms
53,036 KB
testcase_51 AC 37 ms
53,368 KB
testcase_52 AC 210 ms
77,016 KB
testcase_53 AC 175 ms
77,216 KB
testcase_54 AC 732 ms
81,204 KB
testcase_55 AC 728 ms
81,404 KB
testcase_56 AC 743 ms
81,708 KB
testcase_57 AC 775 ms
81,736 KB
testcase_58 AC 787 ms
82,740 KB
testcase_59 AC 802 ms
81,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import heapq
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
inf = 10**18

T = int(input())
N, M = map(int, input().split())
edge = []
G = [[] for _ in range(N)]
for i in range(M):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    edge.append((a, b, c))
    G[a].append((b, c))
    if T == 0:
        G[b].append((a, c))


def dijkstra(i):
    s, t, c = edge[i]
    dist = [inf] * N
    dist[t] = 0
    que = [(0, t)]
    while que:
        dv, v = heapq.heappop(que)
        if dist[v] < dv:
            continue
        if v == s:
            break
        for u, du in G[v]:
            if (v, u) in ((s, t), (t, s)):
                continue
            if dist[u] > dv + du:
                dist[u] = dv + du
                heapq.heappush(que, (dv + du, u))
    return c + dist[s]


ans = inf
for i in range(M):
    d = dijkstra(i)
    if d < ans:
        ans = d
if ans >= inf:
    ans = -1
print(ans)
0