結果
問題 | No.1812 Uribo Road |
ユーザー | ygd. |
提出日時 | 2022-01-14 22:56:58 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,840 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 1,115,140 KB |
最終ジャッジ日時 | 2024-11-20 13:33:43 |
合計ジャッジ時間 | 72,279 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
481,468 KB |
testcase_01 | AC | 40 ms
57,984 KB |
testcase_02 | AC | 40 ms
237,056 KB |
testcase_03 | AC | 235 ms
83,708 KB |
testcase_04 | AC | 45 ms
364,144 KB |
testcase_05 | AC | 46 ms
165,048 KB |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | AC | 231 ms
78,148 KB |
testcase_11 | AC | 190 ms
77,964 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 372 ms
398,464 KB |
testcase_14 | AC | 459 ms
398,592 KB |
testcase_15 | AC | 2,184 ms
115,916 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 | 591 ms
84,084 KB |
testcase_24 | AC | 57 ms
66,944 KB |
testcase_25 | AC | 152 ms
78,220 KB |
testcase_26 | AC | 142 ms
77,988 KB |
testcase_27 | TLE | - |
testcase_28 | AC | 227 ms
80,008 KB |
testcase_29 | AC | 39 ms
52,608 KB |
testcase_30 | AC | 294 ms
77,884 KB |
testcase_31 | TLE | - |
testcase_32 | AC | 189 ms
77,608 KB |
testcase_33 | MLE | - |
ソースコード
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 if vidx == V*K2 - 1: print(c);exit() 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()