結果

問題 No.1995 CHIKA Road
ユーザー kept1994kept1994
提出日時 2022-10-30 19:28:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,027 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 160,476 KB
最終ジャッジ日時 2024-07-07 11:28:46
合計ジャッジ時間 12,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,312 KB
testcase_01 AC 34 ms
52,928 KB
testcase_02 AC 34 ms
52,816 KB
testcase_03 AC 34 ms
53,932 KB
testcase_04 AC 35 ms
53,816 KB
testcase_05 WA -
testcase_06 AC 128 ms
80,776 KB
testcase_07 AC 206 ms
94,028 KB
testcase_08 AC 49 ms
65,720 KB
testcase_09 AC 46 ms
62,436 KB
testcase_10 AC 246 ms
89,028 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 145 ms
84,680 KB
testcase_17 AC 327 ms
110,192 KB
testcase_18 AC 457 ms
123,200 KB
testcase_19 AC 460 ms
123,540 KB
testcase_20 AC 301 ms
108,992 KB
testcase_21 AC 293 ms
106,280 KB
testcase_22 AC 445 ms
121,280 KB
testcase_23 AC 204 ms
93,696 KB
testcase_24 AC 408 ms
123,028 KB
testcase_25 AC 168 ms
86,212 KB
testcase_26 AC 221 ms
96,284 KB
testcase_27 AC 393 ms
122,024 KB
testcase_28 AC 283 ms
106,144 KB
testcase_29 AC 467 ms
125,256 KB
testcase_30 AC 152 ms
86,212 KB
testcase_31 AC 127 ms
80,044 KB
testcase_32 AC 174 ms
89,920 KB
testcase_33 AC 386 ms
121,664 KB
testcase_34 AC 143 ms
80,748 KB
testcase_35 AC 226 ms
94,920 KB
testcase_36 AC 240 ms
98,376 KB
testcase_37 AC 429 ms
123,984 KB
testcase_38 AC 328 ms
108,072 KB
testcase_39 AC 123 ms
79,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import heapq
INF = 10 ** 16
class Dijkstra():
    def __init__(self, N: int) -> None:
        self.N = N 
        self.G = [[] for _ in range(N)]
        return
    
    # 辺の追加
    def addEdge(self, fromNode: int, toNode: int, cost: int):
        self.G[fromNode].append((cost, toNode))
        return
    
    def build(self, startNode: int):
        hq = []
        heapq.heapify(hq)
        # Set start info
        dist = [INF] * self.N
        # prev = [-1] * self.N # 経路復元する場合は移動時に直前の頂点や辺を記録して遷移していく。
        heapq.heappush(hq, (0, startNode))
        dist[startNode] = 0
        # dijkstra
        while hq:
            min_cost, now = heapq.heappop(hq)
            if min_cost > dist[now]:
                continue
            for cost, next in self.G[now]:
                if dist[next] > dist[now] + cost:
                    dist[next] = dist[now] + cost
                    # prev[next] = now # 頂点nextに至る直前の頂点を更新。
                    heapq.heappush(hq, (dist[next], next))
        return dist

def main():
    N, M = map(int, input().split())
    A, B = [], []
    city = set()
    for i in range(M):
        aa, bb = map(int, input().split())
        A.append(aa)
        B.append(bb)
        city.add(aa)
        city.add(bb)
    compressed = {}
    compressed_to_raw = []
    city.add(N)
    city = sorted(list(city))
    for index, val in enumerate(city):
        compressed[val] = index
        compressed_to_raw.append(val)
    dk = Dijkstra(len(city))
    for i in range(len(city) - 1):
        aa = city[i]
        bb = city[i + 1]
        s = compressed[aa]
        t = compressed[bb]
        d = (bb - aa) * 2
        dk.addEdge(s, t, d)
    for aa, bb in zip(A, B):
        s = compressed[aa]
        t = compressed[bb]
        d = 2 * bb - 2 * aa - 1
        dk.addEdge(s, t, d)
    res = dk.build(startNode=0)
    print(res[-1])
    return


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