結果

問題 No.2805 Go to School
ユーザー mkawa2mkawa2
提出日時 2024-07-12 21:41:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 845 ms / 2,000 ms
コード長 1,575 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 127,136 KB
最終ジャッジ日時 2024-07-16 01:38:45
合計ジャッジ時間 14,238 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 37 ms
52,736 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 259 ms
100,992 KB
testcase_05 AC 461 ms
99,584 KB
testcase_06 AC 337 ms
89,728 KB
testcase_07 AC 261 ms
88,224 KB
testcase_08 AC 347 ms
100,608 KB
testcase_09 AC 307 ms
88,704 KB
testcase_10 AC 220 ms
89,216 KB
testcase_11 AC 655 ms
113,280 KB
testcase_12 AC 425 ms
97,100 KB
testcase_13 AC 576 ms
105,784 KB
testcase_14 AC 157 ms
83,072 KB
testcase_15 AC 38 ms
52,224 KB
testcase_16 AC 37 ms
52,480 KB
testcase_17 AC 38 ms
52,736 KB
testcase_18 AC 401 ms
94,612 KB
testcase_19 AC 332 ms
88,564 KB
testcase_20 AC 571 ms
103,040 KB
testcase_21 AC 790 ms
115,628 KB
testcase_22 AC 406 ms
94,208 KB
testcase_23 AC 514 ms
99,860 KB
testcase_24 AC 521 ms
100,836 KB
testcase_25 AC 342 ms
91,264 KB
testcase_26 AC 845 ms
127,136 KB
testcase_27 AC 317 ms
109,184 KB
testcase_28 AC 73 ms
82,688 KB
testcase_29 AC 80 ms
83,072 KB
testcase_30 AC 144 ms
99,060 KB
testcase_31 AC 399 ms
92,840 KB
testcase_32 AC 530 ms
125,864 KB
testcase_33 AC 741 ms
117,476 KB
testcase_34 AC 50 ms
64,128 KB
testcase_35 AC 54 ms
65,152 KB
testcase_36 AC 336 ms
89,576 KB
testcase_37 AC 289 ms
90,992 KB
testcase_38 AC 391 ms
102,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

md = 10**9+7
# md = 998244353

from heapq import *

def dijkstra(to, root=0):
    dist = [inf]*n*2
    dist[root] = 0
    hp = [(0, root)]
    while hp:
        d, uf = heappop(hp)
        if d > dist[uf]: continue
        u,f=divmod(uf,2)
        for v, c in to[u]:
            nd = d+c
            vf=v*2+f
            if dist[vf] <= nd: continue
            dist[vf] = nd
            heappush(hp, (nd, vf))
        if f==0 and d<s+e and tt[u]:
            nd=max(d+1,s+1)
            if nd<dist[uf+1]:
                dist[uf+1]=nd
                heappush(hp,(nd,uf+1))
    return dist

n,m,l,s,e=LI()
to=[[] for _ in range(n)]
for _ in range(m):
    u,v,c=LI()
    u,v=u-1,v-1
    to[u].append((v,c))
    to[v].append((u,c))
tt=[0]*n
for t in LI1():tt[t]=1

dist=dijkstra(to)
if dist[-1]==inf:
    print(-1)
else:
    print(dist[-1])
0