結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー ああいいああいい
提出日時 2022-01-10 11:57:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 929 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 82,684 KB
最終ジャッジ日時 2024-11-14 10:46:13
合計ジャッジ時間 15,477 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,428 KB
testcase_01 AC 38 ms
53,040 KB
testcase_02 AC 37 ms
53,568 KB
testcase_03 AC 40 ms
54,464 KB
testcase_04 AC 37 ms
53,384 KB
testcase_05 AC 38 ms
52,768 KB
testcase_06 AC 38 ms
53,256 KB
testcase_07 AC 75 ms
75,800 KB
testcase_08 AC 95 ms
76,332 KB
testcase_09 AC 914 ms
80,964 KB
testcase_10 AC 88 ms
76,852 KB
testcase_11 AC 702 ms
80,028 KB
testcase_12 AC 212 ms
77,948 KB
testcase_13 AC 393 ms
78,248 KB
testcase_14 AC 47 ms
64,344 KB
testcase_15 AC 94 ms
76,784 KB
testcase_16 AC 189 ms
77,072 KB
testcase_17 AC 57 ms
71,728 KB
testcase_18 AC 56 ms
70,592 KB
testcase_19 AC 456 ms
78,868 KB
testcase_20 AC 44 ms
57,860 KB
testcase_21 AC 857 ms
79,996 KB
testcase_22 AC 41 ms
53,672 KB
testcase_23 AC 38 ms
53,844 KB
testcase_24 AC 39 ms
53,788 KB
testcase_25 AC 40 ms
52,396 KB
testcase_26 AC 40 ms
53,436 KB
testcase_27 AC 38 ms
54,328 KB
testcase_28 AC 54 ms
68,016 KB
testcase_29 AC 145 ms
77,536 KB
testcase_30 AC 47 ms
62,416 KB
testcase_31 AC 80 ms
76,104 KB
testcase_32 AC 38 ms
53,244 KB
testcase_33 AC 303 ms
77,464 KB
testcase_34 AC 183 ms
76,864 KB
testcase_35 AC 149 ms
76,744 KB
testcase_36 AC 119 ms
76,616 KB
testcase_37 AC 96 ms
76,672 KB
testcase_38 AC 160 ms
76,712 KB
testcase_39 AC 144 ms
76,872 KB
testcase_40 AC 40 ms
54,204 KB
testcase_41 AC 39 ms
53,472 KB
testcase_42 AC 39 ms
53,580 KB
testcase_43 AC 126 ms
76,992 KB
testcase_44 AC 114 ms
77,540 KB
testcase_45 AC 823 ms
80,536 KB
testcase_46 AC 81 ms
75,620 KB
testcase_47 AC 173 ms
76,960 KB
testcase_48 AC 524 ms
79,152 KB
testcase_49 AC 87 ms
76,152 KB
testcase_50 AC 39 ms
53,868 KB
testcase_51 AC 39 ms
53,228 KB
testcase_52 AC 201 ms
77,388 KB
testcase_53 AC 135 ms
76,804 KB
testcase_54 AC 732 ms
81,316 KB
testcase_55 AC 720 ms
81,732 KB
testcase_56 AC 745 ms
81,856 KB
testcase_57 AC 929 ms
82,044 KB
testcase_58 AC 929 ms
82,684 KB
testcase_59 AC 906 ms
81,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
N,M = map(int,input().split())
G = [[] for _ in range(N+1)]
edge = []
for _ in range(M):
    u,v,w = map(int,input().split())
    G[u].append((v,w))
    if T == 0:
        G[v].append((u,w))
    edge.append((u,v,w))

import heapq
q = []
heapq.heapify(q)
INF = 10 ** 15
_min = INF
def check(e):
    global _min
    dist = [INF] * (N + 1)
    start,end,w = e
    dist[end] = 0
    heapq.heappush(q,(0,end))
    while q:
        d,now = heapq.heappop(q)
        #if now == start:break
        if d > dist[now]:continue
        for v,ww in  G[now]:
            if dist[v] > d + ww:
                if now != end or v != start:
                    dist[v] = d + ww
                    heapq.heappush(q,(d+ww,v))
    if dist[start] + w < _min:
        _min = dist[start] + w
for e in edge:
    check(e)
if _min == INF:
    print(-1)
else:
    print(_min)
0