結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-30 23:25:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 953 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 82,236 KB
最終ジャッジ日時 2024-10-08 07:26:56
合計ジャッジ時間 13,021 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,340 KB
testcase_01 AC 35 ms
53,872 KB
testcase_02 AC 36 ms
52,968 KB
testcase_03 AC 37 ms
53,616 KB
testcase_04 AC 35 ms
54,396 KB
testcase_05 AC 35 ms
53,052 KB
testcase_06 AC 34 ms
53,532 KB
testcase_07 AC 87 ms
76,140 KB
testcase_08 AC 83 ms
76,480 KB
testcase_09 AC 589 ms
78,976 KB
testcase_10 AC 67 ms
76,164 KB
testcase_11 AC 476 ms
79,232 KB
testcase_12 AC 169 ms
78,132 KB
testcase_13 AC 296 ms
78,592 KB
testcase_14 AC 40 ms
62,336 KB
testcase_15 AC 78 ms
76,416 KB
testcase_16 AC 147 ms
76,648 KB
testcase_17 AC 48 ms
69,868 KB
testcase_18 AC 46 ms
67,328 KB
testcase_19 AC 329 ms
78,208 KB
testcase_20 AC 44 ms
60,160 KB
testcase_21 AC 646 ms
79,744 KB
testcase_22 AC 38 ms
53,476 KB
testcase_23 AC 36 ms
53,836 KB
testcase_24 AC 36 ms
53,444 KB
testcase_25 AC 36 ms
53,128 KB
testcase_26 AC 35 ms
52,820 KB
testcase_27 AC 35 ms
52,524 KB
testcase_28 AC 48 ms
70,568 KB
testcase_29 WA -
testcase_30 AC 47 ms
61,696 KB
testcase_31 AC 70 ms
75,776 KB
testcase_32 AC 36 ms
52,608 KB
testcase_33 WA -
testcase_34 AC 165 ms
76,436 KB
testcase_35 AC 130 ms
76,772 KB
testcase_36 AC 108 ms
76,860 KB
testcase_37 AC 87 ms
76,180 KB
testcase_38 AC 124 ms
76,664 KB
testcase_39 AC 112 ms
76,836 KB
testcase_40 AC 37 ms
52,992 KB
testcase_41 AC 39 ms
52,608 KB
testcase_42 AC 35 ms
52,608 KB
testcase_43 AC 118 ms
76,972 KB
testcase_44 AC 98 ms
77,112 KB
testcase_45 AC 780 ms
80,000 KB
testcase_46 AC 71 ms
75,608 KB
testcase_47 AC 149 ms
76,976 KB
testcase_48 AC 385 ms
78,848 KB
testcase_49 AC 76 ms
75,776 KB
testcase_50 AC 35 ms
52,992 KB
testcase_51 AC 37 ms
52,352 KB
testcase_52 AC 202 ms
76,928 KB
testcase_53 AC 171 ms
76,888 KB
testcase_54 AC 645 ms
81,212 KB
testcase_55 AC 636 ms
81,304 KB
testcase_56 AC 640 ms
81,664 KB
testcase_57 AC 688 ms
81,616 KB
testcase_58 AC 699 ms
82,236 KB
testcase_59 AC 667 ms
81,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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