結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー rlangevinrlangevin
提出日時 2024-02-10 13:19:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,929 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 208,452 KB
最終ジャッジ日時 2024-09-28 17:08:01
合計ジャッジ時間 18,670 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,084 KB
testcase_01 AC 35 ms
53,760 KB
testcase_02 AC 36 ms
53,968 KB
testcase_03 AC 36 ms
53,404 KB
testcase_04 AC 37 ms
53,080 KB
testcase_05 AC 44 ms
64,164 KB
testcase_06 AC 47 ms
64,884 KB
testcase_07 AC 184 ms
76,976 KB
testcase_08 AC 240 ms
77,724 KB
testcase_09 AC 1,890 ms
136,988 KB
testcase_10 AC 244 ms
77,724 KB
testcase_11 AC 1,623 ms
114,484 KB
testcase_12 AC 514 ms
82,300 KB
testcase_13 AC 968 ms
90,844 KB
testcase_14 AC 135 ms
76,908 KB
testcase_15 AC 266 ms
77,620 KB
testcase_16 AC 110 ms
77,112 KB
testcase_17 AC 131 ms
76,732 KB
testcase_18 AC 124 ms
76,508 KB
testcase_19 AC 658 ms
83,636 KB
testcase_20 AC 92 ms
76,808 KB
testcase_21 AC 1,119 ms
95,692 KB
testcase_22 AC 37 ms
54,540 KB
testcase_23 AC 38 ms
54,464 KB
testcase_24 AC 36 ms
54,068 KB
testcase_25 AC 36 ms
53,356 KB
testcase_26 AC 37 ms
54,640 KB
testcase_27 AC 38 ms
53,256 KB
testcase_28 AC 154 ms
76,816 KB
testcase_29 AC 966 ms
93,728 KB
testcase_30 AC 59 ms
67,920 KB
testcase_31 AC 221 ms
78,196 KB
testcase_32 AC 36 ms
53,536 KB
testcase_33 AC 1,634 ms
132,872 KB
testcase_34 AC 880 ms
101,492 KB
testcase_35 AC 111 ms
76,932 KB
testcase_36 AC 81 ms
76,912 KB
testcase_37 AC 60 ms
68,104 KB
testcase_38 AC 113 ms
76,864 KB
testcase_39 AC 87 ms
76,888 KB
testcase_40 AC 38 ms
53,696 KB
testcase_41 AC 38 ms
53,080 KB
testcase_42 AC 38 ms
53,220 KB
testcase_43 AC 402 ms
78,464 KB
testcase_44 AC 240 ms
77,988 KB
testcase_45 TLE -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappush, heappop
inf = float('inf')
def dijkstra(s, g, G, t):
    # ゴールがない場合はg=-1とする。

    N = len(G)

    def cost(v, m):
        return v * N + m

    dist = [inf] * N
    mindist = [inf] * N
    seen = [False] * N
    Edge = set()
    Q = [(cost(0, s), -1)]
    while Q:
        c, p = heappop(Q)
        c, m = divmod(c, N)
        if seen[m]:
            continue
        seen[m] = True
        dist[m] = c
        if t == 0:
            Edge.add((p, m))
            Edge.add((m, p))
        else:
            Edge.add((p, m))

        #------heapをアップデートする。--------
        for u, C in G[m]:
            if seen[u]:
                continue
            newdist = dist[m] + C

            #------------------------------------
            if newdist >= mindist[u]:
                continue
            mindist[u] = newdist
            heappush(Q, (cost(newdist, u), m))
    return dist, Edge

T = int(input())
N, M = map(int, input().split())
G = [[] for i in range(N)]
E = []
if T == 0:
    for i in range(M):
        u, v, c = map(int, input().split())
        u, v = u - 1, v - 1
        G[u].append((v, c))
        G[v].append((u, c))
        E.append((u, v, c))

    ans = inf
    for s in range(N):
        D, Edge = dijkstra(s, -1, G, T)
        for u, v, c in E:
            if (u, v) in Edge:
                continue
            ans = min(ans, D[u] + D[v] + c)
else:
    for i in range(M):
        u, v, c = map(int, input().split())
        u, v = u - 1, v - 1
        G[u].append((v, c))
        E.append((u, v, c))

    ans = inf
    for s in range(N):
        D, Edge = dijkstra(s, -1, G, T)
        for u, v, c in E:
            if (u, v) in Edge:
                continue
            if v != s:
                continue
            ans = min(ans, D[u] + c)
        
print(ans) if ans != inf else print(-1)
0