結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,936 KB
testcase_01 AC 37 ms
53,688 KB
testcase_02 AC 37 ms
53,292 KB
testcase_03 AC 37 ms
54,132 KB
testcase_04 AC 37 ms
53,448 KB
testcase_05 AC 53 ms
75,368 KB
testcase_06 AC 55 ms
75,284 KB
testcase_07 AC 140 ms
78,560 KB
testcase_08 AC 197 ms
79,528 KB
testcase_09 AC 1,488 ms
188,804 KB
testcase_10 AC 171 ms
79,188 KB
testcase_11 AC 1,203 ms
146,332 KB
testcase_12 AC 369 ms
85,952 KB
testcase_13 AC 762 ms
107,920 KB
testcase_14 AC 134 ms
78,852 KB
testcase_15 AC 175 ms
78,880 KB
testcase_16 AC 103 ms
76,580 KB
testcase_17 AC 105 ms
76,868 KB
testcase_18 AC 103 ms
77,320 KB
testcase_19 AC 489 ms
91,124 KB
testcase_20 AC 90 ms
76,708 KB
testcase_21 AC 1,010 ms
125,708 KB
testcase_22 AC 37 ms
53,228 KB
testcase_23 AC 36 ms
54,308 KB
testcase_24 AC 37 ms
53,480 KB
testcase_25 AC 36 ms
53,308 KB
testcase_26 AC 37 ms
53,760 KB
testcase_27 AC 37 ms
53,292 KB
testcase_28 AC 136 ms
78,080 KB
testcase_29 AC 568 ms
136,492 KB
testcase_30 AC 51 ms
66,912 KB
testcase_31 AC 147 ms
80,796 KB
testcase_32 AC 38 ms
53,472 KB
testcase_33 AC 1,012 ms
165,828 KB
testcase_34 AC 604 ms
124,296 KB
testcase_35 AC 98 ms
76,588 KB
testcase_36 AC 79 ms
76,424 KB
testcase_37 AC 58 ms
68,060 KB
testcase_38 AC 97 ms
76,512 KB
testcase_39 AC 81 ms
76,528 KB
testcase_40 AC 36 ms
53,752 KB
testcase_41 AC 37 ms
52,872 KB
testcase_42 AC 36 ms
54,868 KB
testcase_43 AC 214 ms
80,508 KB
testcase_44 AC 163 ms
77,960 KB
testcase_45 TLE -
testcase_46 AC 125 ms
79,648 KB
testcase_47 AC 814 ms
144,984 KB
testcase_48 AC 1,021 ms
208,140 KB
testcase_49 AC 147 ms
78,828 KB
testcase_50 AC 37 ms
53,448 KB
testcase_51 AC 36 ms
53,860 KB
testcase_52 AC 296 ms
84,920 KB
testcase_53 AC 191 ms
79,788 KB
testcase_54 AC 757 ms
112,252 KB
testcase_55 AC 774 ms
111,584 KB
testcase_56 AC 797 ms
111,992 KB
testcase_57 AC 1,714 ms
255,892 KB
testcase_58 AC 1,720 ms
260,540 KB
testcase_59 AC 1,733 ms
250,328 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() 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, 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, 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