結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー brthyyjpbrthyyjp
提出日時 2021-12-21 21:05:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,057 ms / 2,000 ms
コード長 1,305 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 85,056 KB
最終ジャッジ日時 2024-09-15 15:38:20
合計ジャッジ時間 17,556 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,736 KB
testcase_01 AC 44 ms
52,992 KB
testcase_02 AC 40 ms
52,992 KB
testcase_03 AC 39 ms
52,736 KB
testcase_04 AC 40 ms
52,864 KB
testcase_05 AC 41 ms
52,864 KB
testcase_06 AC 41 ms
52,736 KB
testcase_07 AC 70 ms
76,416 KB
testcase_08 AC 94 ms
76,800 KB
testcase_09 AC 1,051 ms
82,504 KB
testcase_10 AC 84 ms
76,672 KB
testcase_11 AC 842 ms
81,552 KB
testcase_12 AC 212 ms
78,408 KB
testcase_13 AC 444 ms
79,496 KB
testcase_14 AC 49 ms
63,232 KB
testcase_15 AC 90 ms
76,928 KB
testcase_16 AC 187 ms
76,836 KB
testcase_17 AC 56 ms
70,400 KB
testcase_18 AC 54 ms
68,480 KB
testcase_19 AC 537 ms
79,528 KB
testcase_20 AC 45 ms
56,704 KB
testcase_21 AC 1,057 ms
80,640 KB
testcase_22 AC 41 ms
52,608 KB
testcase_23 AC 41 ms
53,248 KB
testcase_24 AC 39 ms
52,736 KB
testcase_25 AC 39 ms
52,608 KB
testcase_26 AC 39 ms
52,352 KB
testcase_27 AC 39 ms
52,608 KB
testcase_28 AC 51 ms
66,432 KB
testcase_29 AC 181 ms
78,372 KB
testcase_30 AC 50 ms
61,696 KB
testcase_31 AC 86 ms
76,544 KB
testcase_32 AC 41 ms
52,864 KB
testcase_33 AC 369 ms
78,136 KB
testcase_34 AC 214 ms
77,776 KB
testcase_35 AC 134 ms
76,580 KB
testcase_36 AC 128 ms
76,552 KB
testcase_37 AC 103 ms
76,504 KB
testcase_38 AC 150 ms
76,508 KB
testcase_39 AC 147 ms
77,212 KB
testcase_40 AC 40 ms
52,992 KB
testcase_41 AC 41 ms
52,864 KB
testcase_42 AC 40 ms
52,992 KB
testcase_43 AC 128 ms
77,568 KB
testcase_44 AC 110 ms
77,872 KB
testcase_45 AC 1,004 ms
82,212 KB
testcase_46 AC 83 ms
76,812 KB
testcase_47 AC 200 ms
77,828 KB
testcase_48 AC 683 ms
81,420 KB
testcase_49 AC 103 ms
76,792 KB
testcase_50 AC 40 ms
52,992 KB
testcase_51 AC 40 ms
52,480 KB
testcase_52 AC 230 ms
77,132 KB
testcase_53 AC 148 ms
76,940 KB
testcase_54 AC 778 ms
82,924 KB
testcase_55 AC 777 ms
84,092 KB
testcase_56 AC 784 ms
83,724 KB
testcase_57 AC 1,022 ms
84,976 KB
testcase_58 AC 1,034 ms
84,672 KB
testcase_59 AC 1,018 ms
85,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
INF = 10**18
def dijkstra(s, edge):
    n = len(edge)
    dist = [INF]*n
    dist[s] = 0
    edgelist = []
    heapq.heappush(edgelist,(dist[s], s))
    while edgelist:
        minedge = heapq.heappop(edgelist)
        if dist[minedge[1]] < minedge[0]:
            continue
        v = minedge[1]
        for e in edge[v]:
            if dist[e[1]] > dist[v]+e[0]:
                dist[e[1]] = dist[v]+e[0]
                heapq.heappush(edgelist,(dist[e[1]], e[1]))
    return dist

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

t = int(input())
n, m = map(int, input().split())
E = []
edge = [set() for i in range(n)]
for i in range(m):
    u, v, w = map(int, input().split())
    u, v = u-1, v-1
    E.append((u, v, w))
    if t == 0:
        edge[u].add((w, v))
        edge[v].add((w, u))
    else:
        edge[u].add((w, v))

ans = INF
if t == 0:
    for u, v, w in E:
        edge[u].remove((w, v))
        edge[v].remove((w, u))
        D = dijkstra(v, edge)
        ans = min(ans, w+D[u])
        edge[u].add((w, v))
        edge[v].add((w, u))
else:
    for u, v, w in E:
        edge[u].remove((w, v))
        D = dijkstra(v, edge)
        ans = min(ans, w+D[u])
        edge[u].add((w, v))
if ans < INF:
    print(ans)
else:
    print(-1)
0