結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー ああいいああいい
提出日時 2022-01-10 11:46:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 865 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 117,956 KB
最終ジャッジ日時 2024-11-14 10:45:50
合計ジャッジ時間 18,530 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,936 KB
testcase_01 AC 39 ms
53,488 KB
testcase_02 AC 37 ms
53,524 KB
testcase_03 AC 39 ms
52,760 KB
testcase_04 AC 39 ms
53,700 KB
testcase_05 AC 39 ms
52,988 KB
testcase_06 AC 39 ms
53,376 KB
testcase_07 AC 76 ms
76,092 KB
testcase_08 AC 100 ms
76,404 KB
testcase_09 AC 1,015 ms
82,340 KB
testcase_10 AC 93 ms
76,832 KB
testcase_11 AC 803 ms
80,888 KB
testcase_12 WA -
testcase_13 AC 433 ms
78,864 KB
testcase_14 AC 46 ms
63,836 KB
testcase_15 AC 96 ms
77,016 KB
testcase_16 AC 199 ms
77,640 KB
testcase_17 AC 59 ms
71,804 KB
testcase_18 AC 56 ms
70,600 KB
testcase_19 AC 480 ms
78,372 KB
testcase_20 AC 44 ms
57,996 KB
testcase_21 AC 970 ms
85,364 KB
testcase_22 AC 40 ms
53,844 KB
testcase_23 AC 38 ms
53,172 KB
testcase_24 AC 39 ms
54,288 KB
testcase_25 AC 39 ms
54,124 KB
testcase_26 AC 40 ms
53,736 KB
testcase_27 AC 39 ms
52,816 KB
testcase_28 AC 54 ms
67,804 KB
testcase_29 AC 142 ms
76,928 KB
testcase_30 AC 47 ms
61,952 KB
testcase_31 AC 80 ms
75,876 KB
testcase_32 AC 40 ms
53,632 KB
testcase_33 AC 297 ms
77,324 KB
testcase_34 AC 188 ms
77,536 KB
testcase_35 AC 159 ms
78,568 KB
testcase_36 AC 151 ms
77,312 KB
testcase_37 AC 96 ms
76,388 KB
testcase_38 WA -
testcase_39 AC 136 ms
76,844 KB
testcase_40 AC 38 ms
54,760 KB
testcase_41 AC 40 ms
53,324 KB
testcase_42 AC 39 ms
54,244 KB
testcase_43 AC 126 ms
77,724 KB
testcase_44 AC 114 ms
77,428 KB
testcase_45 AC 850 ms
80,540 KB
testcase_46 AC 82 ms
75,900 KB
testcase_47 AC 174 ms
77,704 KB
testcase_48 AC 1,058 ms
80,972 KB
testcase_49 AC 223 ms
76,692 KB
testcase_50 AC 41 ms
54,524 KB
testcase_51 AC 40 ms
53,528 KB
testcase_52 AC 283 ms
76,820 KB
testcase_53 AC 183 ms
76,684 KB
testcase_54 AC 775 ms
81,036 KB
testcase_55 AC 733 ms
81,684 KB
testcase_56 AC 739 ms
81,424 KB
testcase_57 AC 1,393 ms
117,596 KB
testcase_58 AC 1,381 ms
117,956 KB
testcase_59 AC 1,378 ms
117,220 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