結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,836 KB
testcase_01 AC 37 ms
53,156 KB
testcase_02 AC 38 ms
52,824 KB
testcase_03 AC 38 ms
53,700 KB
testcase_04 AC 38 ms
53,416 KB
testcase_05 AC 37 ms
52,684 KB
testcase_06 AC 38 ms
52,760 KB
testcase_07 AC 61 ms
76,648 KB
testcase_08 AC 91 ms
76,552 KB
testcase_09 AC 895 ms
80,392 KB
testcase_10 AC 71 ms
76,440 KB
testcase_11 AC 709 ms
79,896 KB
testcase_12 AC 203 ms
78,492 KB
testcase_13 AC 384 ms
79,132 KB
testcase_14 AC 42 ms
63,144 KB
testcase_15 AC 85 ms
76,524 KB
testcase_16 AC 183 ms
77,260 KB
testcase_17 AC 51 ms
70,760 KB
testcase_18 AC 49 ms
69,068 KB
testcase_19 AC 465 ms
78,944 KB
testcase_20 AC 45 ms
62,328 KB
testcase_21 AC 907 ms
79,692 KB
testcase_22 AC 39 ms
53,564 KB
testcase_23 AC 39 ms
53,940 KB
testcase_24 AC 39 ms
54,256 KB
testcase_25 AC 38 ms
53,336 KB
testcase_26 AC 37 ms
52,832 KB
testcase_27 AC 38 ms
52,840 KB
testcase_28 AC 52 ms
68,900 KB
testcase_29 AC 136 ms
77,376 KB
testcase_30 AC 49 ms
63,116 KB
testcase_31 AC 74 ms
76,260 KB
testcase_32 AC 38 ms
54,056 KB
testcase_33 AC 303 ms
77,340 KB
testcase_34 AC 182 ms
76,980 KB
testcase_35 AC 158 ms
76,912 KB
testcase_36 AC 127 ms
76,900 KB
testcase_37 AC 97 ms
76,104 KB
testcase_38 AC 166 ms
77,096 KB
testcase_39 AC 143 ms
77,468 KB
testcase_40 AC 40 ms
58,136 KB
testcase_41 AC 39 ms
53,776 KB
testcase_42 AC 38 ms
53,004 KB
testcase_43 AC 116 ms
77,124 KB
testcase_44 AC 106 ms
77,144 KB
testcase_45 AC 839 ms
80,640 KB
testcase_46 AC 71 ms
76,000 KB
testcase_47 AC 158 ms
77,064 KB
testcase_48 AC 625 ms
79,820 KB
testcase_49 AC 89 ms
76,600 KB
testcase_50 AC 38 ms
54,264 KB
testcase_51 AC 38 ms
54,512 KB
testcase_52 AC 235 ms
77,460 KB
testcase_53 AC 171 ms
77,036 KB
testcase_54 AC 725 ms
81,248 KB
testcase_55 AC 721 ms
81,308 KB
testcase_56 AC 706 ms
82,276 KB
testcase_57 AC 914 ms
83,384 KB
testcase_58 AC 941 ms
82,328 KB
testcase_59 AC 967 ms
82,404 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
        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