結果

問題 No.1812 Uribo Road
ユーザー ygd.ygd.
提出日時 2022-01-14 22:50:32
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,783 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 1,111,088 KB
最終ジャッジ日時 2024-11-20 13:20:35
合計ジャッジ時間 72,842 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
485,512 KB
testcase_01 AC 43 ms
59,576 KB
testcase_02 AC 41 ms
241,428 KB
testcase_03 AC 242 ms
190,248 KB
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 289 ms
78,684 KB
testcase_09 AC 475 ms
82,328 KB
testcase_10 AC 250 ms
78,072 KB
testcase_11 AC 210 ms
77,876 KB
testcase_12 TLE -
testcase_13 AC 349 ms
398,160 KB
testcase_14 AC 425 ms
398,612 KB
testcase_15 AC 2,434 ms
117,192 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 655 ms
84,404 KB
testcase_24 AC 71 ms
72,588 KB
testcase_25 AC 180 ms
78,220 KB
testcase_26 AC 164 ms
77,996 KB
testcase_27 TLE -
testcase_28 AC 304 ms
81,040 KB
testcase_29 AC 40 ms
54,244 KB
testcase_30 AC 277 ms
78,188 KB
testcase_31 TLE -
testcase_32 AC 206 ms
77,584 KB
testcase_33 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline #文字列につけてはダメ
input = sys.stdin.buffer.readline #文字列につけてはダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#MOD = pow(10,9) + 7
#MOD = 998244353


def main():
    N,M,K = map(int,input().split())
    R = list(map(int,input().split()))
    R = [r-1 for r in R]
    R.sort()
    dic = {}
    req = 0
    G = [[] for _ in range(N)]
    for i in range(M):
        a,b,c = map(int,input().split())
        a -= 1; b -= 1
        G[a].append((c,b))
        G[b].append((c,a))
        if req < K and i == R[req]:
            dic[(a,b)] = req
            dic[(b,a)] = req
            req += 1
    #print(dic)

    dis = dijkstra_heap2(0,K,G,dic)
    ans = dis[-1]
    print(ans)

def dijkstra_heap2(s,K,G,dic):
    INF = pow(10,18)
    #S:start, V: node, E: Edge, G: Graph
    V = len(G)
    K2 = 1 << K
    #d[i][j]: i番目の頂点にいて通った道の状態がjの時の最短経路
    #idx = i * K2 + j 
    d = [INF for _ in range(V * K2)]
    d[s] = 0
    PQ = []
    heappush(PQ,(0,s))

    while PQ:
        c,vidx = heappop(PQ)
        vi = vidx // K2
        vj = vidx % K2
        if d[vidx] < c:
            continue
        d[vidx] = c
        for cost,ui in G[vi]:
            uj = vj
            if (vi,ui) in dic:
                uj = vj | 1 << dic[(vi,ui)]
            uidx = ui * K2 + uj
            if d[uidx] <= cost + d[vidx]:
                continue
            d[uidx] = cost + d[vidx]
            heappush(PQ,(d[uidx], uidx))

    return d

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