結果

問題 No.2805 Go to School
ユーザー mattu34mattu34
提出日時 2024-07-12 22:03:08
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 3,243 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 166,488 KB
最終ジャッジ日時 2024-07-16 01:39:46
合計ジャッジ時間 23,075 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
88,932 KB
testcase_01 AC 145 ms
88,680 KB
testcase_02 AC 147 ms
88,888 KB
testcase_03 AC 146 ms
88,748 KB
testcase_04 AC 396 ms
120,872 KB
testcase_05 AC 960 ms
116,344 KB
testcase_06 AC 414 ms
102,064 KB
testcase_07 AC 541 ms
104,064 KB
testcase_08 AC 775 ms
113,548 KB
testcase_09 AC 499 ms
104,400 KB
testcase_10 AC 397 ms
100,668 KB
testcase_11 AC 609 ms
130,052 KB
testcase_12 AC 436 ms
107,036 KB
testcase_13 AC 560 ms
112,960 KB
testcase_14 AC 212 ms
98,496 KB
testcase_15 AC 143 ms
88,832 KB
testcase_16 AC 145 ms
88,648 KB
testcase_17 AC 146 ms
88,644 KB
testcase_18 AC 565 ms
109,560 KB
testcase_19 AC 449 ms
104,104 KB
testcase_20 AC 1,262 ms
125,192 KB
testcase_21 AC 937 ms
141,752 KB
testcase_22 AC 430 ms
112,444 KB
testcase_23 AC 614 ms
117,968 KB
testcase_24 AC 994 ms
120,424 KB
testcase_25 AC 588 ms
113,636 KB
testcase_26 AC 986 ms
151,516 KB
testcase_27 AC 526 ms
137,808 KB
testcase_28 AC 189 ms
100,560 KB
testcase_29 AC 193 ms
96,600 KB
testcase_30 AC 286 ms
112,320 KB
testcase_31 AC 697 ms
112,668 KB
testcase_32 AC 1,425 ms
166,488 KB
testcase_33 TLE -
testcase_34 AC 158 ms
89,308 KB
testcase_35 AC 158 ms
89,304 KB
testcase_36 AC 552 ms
109,068 KB
testcase_37 AC 523 ms
110,524 KB
testcase_38 AC 448 ms
122,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
import sys
import heapq
from heapq import heapify, heappop, heappush
import bisect
import itertools
from functools import lru_cache
from types import GeneratorType
from fractions import Fraction
import math
import copy
import random

# import numpy as np

# sys.setrecursionlimit(int(1e7))
# @lru_cache(maxsize=None) # CPython特化
# @bootstrap # PyPy特化(こっちのほうが速い) yield dfs(), yield Noneを忘れずに


def bootstrap(f, stack=[]):  # yield
    def wrappedfunc(*args, **kwargs):
        if stack:
            return f(*args, **kwargs)
        else:
            to = f(*args, **kwargs)
            while True:
                if type(to) is GeneratorType:
                    stack.append(to)
                    to = next(to)
                else:
                    stack.pop()
                    if not stack:
                        break
                    to = stack[-1].send(to)
            return to

    return wrappedfunc


dxdy1 = ((0, 1), (0, -1), (1, 0), (-1, 0))  # 上下右左
dxdy2 = (
    (0, 1),
    (0, -1),
    (1, 0),
    (-1, 0),
    (1, 1),
    (-1, -1),
    (1, -1),
    (-1, 1),
)  # 8方向すべて
dxdy3 = ((0, 1), (1, 0))  # 右 or 下
dxdy4 = ((1, 1), (1, -1), (-1, 1), (-1, -1))  # 斜め
INF = float("inf")
_INF = 1 << 60
MOD = 998244353
mod = 998244353
MOD2 = 10**9 + 7
mod2 = 10**9 + 7
# memo : len([a,b,...,z])==26
# memo : 2^20 >= 10^6
# 小数の計算を避ける : x/y -> (x*big)//y  ex:big=10**9
# @:小さい文字, ~:大きい文字,None: 空の文字列
# ユークリッドの互除法:gcd(x,y)=gcd(x,y-x)
# memo : d 桁以下の p 進表記を用いると p^d-1 以下のすべての
#        非負整数を表現することができる
# memo : (X,Y) -> (X+Y,X−Y) <=> 点を原点を中心に45度回転し、√2倍に拡大
# memo : (x,y)のx正から見た偏角をラジアンで(-πからπ]: math.atan2(y, x)
# memo : a < bのとき ⌊a⌋ ≦ ⌊b⌋

input = lambda: sys.stdin.readline().rstrip()
mi = lambda: map(int, input().split())
li = lambda: list(mi())
ii = lambda: int(input())
py = lambda: print("Yes")
pn = lambda: print("No")
pf = lambda: print("First")
ps = lambda: print("Second")

INF = 10**15
N, M, L, S, E = mi()
TT = S + E
adj = [[] for _ in range(N)]
for _ in range(M):
    a, b, t = mi()
    if a == b:
        continue
    a -= 1
    b -= 1
    adj[a].append((t, b))
    adj[b].append((t, a))
for i in range(N):
    adj[i].sort()

dist = [[INF] * 2 for _ in range(N)]
tmp = li()
T = [0] * N
for t in tmp:
    T[t - 1] = 1
pq = []
heappush(pq, (0, 0, 0))
while pq:
    t, node, s = heappop(pq)
    if node == N - 1 and s == 1:
        print(t)
        exit()
    if dist[node][s] < t:
        continue
    dist[node][s] = t
    if T[node] and t < TT and s == 0:
        wait = max(0, S - t)
        if dist[node][1] > t + wait + 1:
            dist[node][1] = t + wait + 1
            heappush(pq, (dist[node][1], node, 1))
    for w, nxt in adj[node]:
        if dist[nxt][s] <= t + w:
            continue
        if s == 0 and t + w >= TT:
            continue
        dist[nxt][s] = t + w
        heappush(pq, (dist[nxt][s], nxt, s))

if dist[-1][1] == INF:
    print(-1)
else:
    print(dist[-1][1])
0