結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー rlangevinrlangevin
提出日時 2024-02-10 13:47:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,854 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 111,180 KB
最終ジャッジ日時 2024-09-28 17:10:32
合計ジャッジ時間 23,313 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,216 KB
testcase_01 AC 36 ms
53,008 KB
testcase_02 AC 37 ms
54,320 KB
testcase_03 AC 35 ms
53,288 KB
testcase_04 AC 37 ms
53,544 KB
testcase_05 AC 41 ms
61,092 KB
testcase_06 AC 40 ms
62,824 KB
testcase_07 AC 99 ms
76,404 KB
testcase_08 AC 195 ms
78,036 KB
testcase_09 AC 1,588 ms
98,592 KB
testcase_10 AC 129 ms
77,164 KB
testcase_11 AC 1,268 ms
94,760 KB
testcase_12 AC 373 ms
80,220 KB
testcase_13 AC 711 ms
84,996 KB
testcase_14 AC 104 ms
77,108 KB
testcase_15 AC 132 ms
77,196 KB
testcase_16 AC 105 ms
76,940 KB
testcase_17 AC 83 ms
76,172 KB
testcase_18 AC 81 ms
76,324 KB
testcase_19 AC 394 ms
79,608 KB
testcase_20 AC 84 ms
76,800 KB
testcase_21 AC 932 ms
85,916 KB
testcase_22 AC 37 ms
53,548 KB
testcase_23 AC 37 ms
53,500 KB
testcase_24 AC 34 ms
53,356 KB
testcase_25 AC 35 ms
53,164 KB
testcase_26 AC 37 ms
53,156 KB
testcase_27 AC 36 ms
52,816 KB
testcase_28 AC 121 ms
76,860 KB
testcase_29 AC 298 ms
77,312 KB
testcase_30 AC 48 ms
63,896 KB
testcase_31 AC 102 ms
76,596 KB
testcase_32 AC 35 ms
53,244 KB
testcase_33 AC 1,000 ms
87,384 KB
testcase_34 AC 603 ms
83,264 KB
testcase_35 AC 95 ms
76,572 KB
testcase_36 AC 70 ms
74,144 KB
testcase_37 AC 55 ms
67,556 KB
testcase_38 AC 100 ms
76,816 KB
testcase_39 AC 82 ms
77,012 KB
testcase_40 AC 37 ms
54,204 KB
testcase_41 AC 38 ms
54,332 KB
testcase_42 AC 35 ms
53,980 KB
testcase_43 AC 165 ms
77,872 KB
testcase_44 AC 130 ms
77,316 KB
testcase_45 TLE -
testcase_46 AC 97 ms
76,736 KB
testcase_47 AC 841 ms
85,684 KB
testcase_48 AC 696 ms
83,088 KB
testcase_49 AC 119 ms
76,724 KB
testcase_50 AC 37 ms
54,068 KB
testcase_51 AC 37 ms
54,332 KB
testcase_52 AC 281 ms
78,332 KB
testcase_53 AC 185 ms
77,424 KB
testcase_54 AC 657 ms
83,872 KB
testcase_55 AC 663 ms
83,640 KB
testcase_56 AC 641 ms
83,896 KB
testcase_57 AC 1,590 ms
101,856 KB
testcase_58 AC 1,582 ms
102,128 KB
testcase_59 AC 1,585 ms
102,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappush, heappop
inf = 10**18
def dijkstra(s, 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 and p != -1:
            Edge.add(DD[(m,p)])


        #------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:
    DD = dict()
    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, i))
        DD[(u, v)] = i
        DD[(v, u)] = i

    ans = inf
    for s in range(N):
        D, Edge = dijkstra(s, T)
        for u, v, c, i in E:
            if i 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, T)
        for u, v, c in E:
            if v != s:
                continue
            ans = min(ans, D[u] + c)
        
print(ans) if ans != inf else print(-1)
0