結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー rlangevinrlangevin
提出日時 2024-02-10 13:40:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,879 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 267,008 KB
最終ジャッジ日時 2024-09-28 17:09:42
合計ジャッジ時間 25,596 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,004 KB
testcase_01 AC 38 ms
53,656 KB
testcase_02 AC 36 ms
54,252 KB
testcase_03 AC 36 ms
53,024 KB
testcase_04 AC 37 ms
53,312 KB
testcase_05 AC 53 ms
75,324 KB
testcase_06 AC 55 ms
75,084 KB
testcase_07 AC 137 ms
78,504 KB
testcase_08 AC 198 ms
80,340 KB
testcase_09 AC 1,579 ms
187,692 KB
testcase_10 AC 173 ms
79,180 KB
testcase_11 AC 1,277 ms
146,524 KB
testcase_12 AC 379 ms
86,304 KB
testcase_13 AC 781 ms
108,272 KB
testcase_14 AC 139 ms
79,508 KB
testcase_15 AC 176 ms
79,652 KB
testcase_16 AC 104 ms
76,928 KB
testcase_17 AC 106 ms
77,144 KB
testcase_18 AC 108 ms
77,212 KB
testcase_19 AC 496 ms
91,272 KB
testcase_20 AC 88 ms
76,736 KB
testcase_21 AC 1,004 ms
123,888 KB
testcase_22 AC 37 ms
53,384 KB
testcase_23 AC 37 ms
54,320 KB
testcase_24 AC 36 ms
52,948 KB
testcase_25 AC 36 ms
54,492 KB
testcase_26 AC 36 ms
53,664 KB
testcase_27 AC 36 ms
53,380 KB
testcase_28 AC 139 ms
77,976 KB
testcase_29 AC 560 ms
134,028 KB
testcase_30 AC 51 ms
66,584 KB
testcase_31 AC 146 ms
80,504 KB
testcase_32 AC 38 ms
53,088 KB
testcase_33 AC 977 ms
166,432 KB
testcase_34 AC 623 ms
124,292 KB
testcase_35 AC 103 ms
76,584 KB
testcase_36 AC 82 ms
76,620 KB
testcase_37 AC 56 ms
67,272 KB
testcase_38 AC 98 ms
76,628 KB
testcase_39 AC 81 ms
76,812 KB
testcase_40 AC 38 ms
54,116 KB
testcase_41 AC 37 ms
53,884 KB
testcase_42 AC 37 ms
54,156 KB
testcase_43 AC 216 ms
79,972 KB
testcase_44 AC 163 ms
78,152 KB
testcase_45 TLE -
testcase_46 AC 125 ms
79,080 KB
testcase_47 AC 833 ms
145,236 KB
testcase_48 AC 1,049 ms
209,656 KB
testcase_49 AC 150 ms
78,976 KB
testcase_50 AC 40 ms
54,184 KB
testcase_51 AC 37 ms
54,796 KB
testcase_52 AC 298 ms
85,148 KB
testcase_53 AC 189 ms
79,912 KB
testcase_54 AC 782 ms
112,504 KB
testcase_55 AC 780 ms
111,488 KB
testcase_56 AC 780 ms
112,232 KB
testcase_57 AC 1,695 ms
258,992 KB
testcase_58 AC 1,676 ms
259,800 KB
testcase_59 AC 1,685 ms
250,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappush, heappop
inf = 10**18
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() for i in range(N)]
    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[p].add(m)
            Edge[m].add(p)
        else:
            Edge[p].add(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 v in Edge[u]:
                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 v != s:
                continue
            ans = min(ans, D[u] + c)
        
print(ans) if ans != inf else print(-1)
0