結果

問題 No.2805 Go to School
ユーザー hato336hato336
提出日時 2024-07-12 21:28:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,242 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 165,556 KB
最終ジャッジ日時 2024-07-12 21:28:27
合計ジャッジ時間 20,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
85,632 KB
testcase_01 AC 133 ms
85,376 KB
testcase_02 WA -
testcase_03 AC 128 ms
85,376 KB
testcase_04 AC 742 ms
130,928 KB
testcase_05 AC 528 ms
111,644 KB
testcase_06 AC 464 ms
111,116 KB
testcase_07 AC 553 ms
132,736 KB
testcase_08 AC 511 ms
111,344 KB
testcase_09 AC 380 ms
112,728 KB
testcase_10 AC 915 ms
153,856 KB
testcase_11 AC 638 ms
126,972 KB
testcase_12 AC 862 ms
141,184 KB
testcase_13 AC 263 ms
102,016 KB
testcase_14 WA -
testcase_15 AC 128 ms
85,376 KB
testcase_16 AC 124 ms
85,504 KB
testcase_17 WA -
testcase_18 AC 504 ms
109,312 KB
testcase_19 AC 788 ms
135,232 KB
testcase_20 WA -
testcase_21 AC 586 ms
119,936 KB
testcase_22 WA -
testcase_23 AC 711 ms
129,188 KB
testcase_24 AC 525 ms
111,616 KB
testcase_25 AC 1,072 ms
165,556 KB
testcase_26 AC 499 ms
146,048 KB
testcase_27 AC 162 ms
92,544 KB
testcase_28 AC 211 ms
103,040 KB
testcase_29 AC 285 ms
126,080 KB
testcase_30 AC 488 ms
115,328 KB
testcase_31 AC 722 ms
163,012 KB
testcase_32 WA -
testcase_33 AC 157 ms
89,836 KB
testcase_34 AC 150 ms
89,472 KB
testcase_35 AC 519 ms
112,128 KB
testcase_36 WA -
testcase_37 AC 592 ms
134,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
#n = int(input())
#
#alist = []
input = sys.stdin.readline
n,m,l,s,e = map(int,input().split())
edge = [[] for i in range(n*2)]
for i in range(m):
    u,v,t = map(int,input().split())
    u-=1
    v-=1
    edge[2*u].append((2*v,t))
    edge[2*v].append((2*u,t))
    edge[2*u+1].append((2*v+1,t))
    edge[2*v+1].append((2*u+1,t))
toile = set(map(lambda x:int(x)-1,input().split()))
start = 0
d = []
dist = [10**18 for i in range(n+n)]
heapq.heappush(d,(0,0))
dist[start] = 0
while d:
    _,now = heapq.heappop(d)
    if _ > dist[now]:
        continue
    y = now % 2
    if y == 0 and now // 2 in toile:
        x = dist[now]
        if x < s:
            c = s + 1
        elif s <= x < e:
            c = x + 1
        else:
            c = 10**19
        if dist[now+1] > c:
            dist[now+1] = c
            heapq.heappush(d,(dist[now+1],now+1))
    for to,cost in edge[now]:
        if dist[to] > dist[now] + cost:
            dist[to] = dist[now] + cost
            heapq.heappush(d,(dist[to],to))
print(dist[-1] if dist[-1] != 10**18 else -1)
0