結果

問題 No.614 壊れたキャンパス
ユーザー brthyyjpbrthyyjp
提出日時 2021-12-30 03:31:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,610 ms / 2,000 ms
コード長 1,379 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 254,020 KB
最終ジャッジ日時 2024-10-05 04:59:06
合計ジャッジ時間 15,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,400 KB
testcase_01 AC 47 ms
54,016 KB
testcase_02 AC 47 ms
54,656 KB
testcase_03 AC 47 ms
54,144 KB
testcase_04 AC 47 ms
54,272 KB
testcase_05 AC 44 ms
54,016 KB
testcase_06 AC 43 ms
54,144 KB
testcase_07 AC 43 ms
54,272 KB
testcase_08 AC 1,530 ms
254,000 KB
testcase_09 AC 1,207 ms
245,724 KB
testcase_10 AC 716 ms
194,892 KB
testcase_11 AC 1,567 ms
252,040 KB
testcase_12 AC 1,610 ms
252,104 KB
testcase_13 AC 1,460 ms
254,020 KB
testcase_14 AC 1,405 ms
252,180 KB
testcase_15 AC 625 ms
188,388 KB
testcase_16 AC 1,250 ms
249,492 KB
testcase_17 AC 663 ms
235,292 KB
testcase_18 AC 592 ms
206,944 KB
testcase_19 AC 392 ms
195,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

import heapq
INF = float('inf')
def dijkstra(s, edge):
    dist = defaultdict(lambda: INF)
    dist[s] = 0
    edgelist = []
    heapq.heappush(edgelist,(dist[s], s))
    while edgelist:
        minedge = heapq.heappop(edgelist)
        if dist[minedge[1]] < minedge[0]:
            continue
        v = minedge[1]
        for e in edge[v]:
            if dist[e[1]] > dist[v]+e[0]:
                dist[e[1]] = dist[v]+e[0]
                heapq.heappush(edgelist,(dist[e[1]], e[1]))
    return dist

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

def main():

    n,m,k,s,t = map(int, input().split())
    s,t = s-1, t-1
    edge = defaultdict(lambda: [])
    V = [[] for i in range(n)]
    V[0].append(s)
    V[n-1].append(t)
    for i in range(m):
        a, b, c = map(int, input().split())
        a, b, c = a-1, b-1, c-1
        edge[b*n+a].append((0, c*n+a+1))
        V[a].append(b)
        V[a+1].append(c)

    for a, l in enumerate(V):
        l.sort()
        for i in range(len(l)-1):
            x, y = l[i], l[i+1]
            d = abs(x-y)
            edge[x*n+a].append((d, y*n+a))
            edge[y*n+a].append((d, x*n+a))

    s = s*n
    t = t*n+n-1
    D = dijkstra(s, edge)
    if D[t] < INF:
        print(D[t])
    else:
        print(-1)

if __name__ == '__main__':
    main()
0