結果

問題 No.2805 Go to School
ユーザー hato336hato336
提出日時 2024-07-12 21:28:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,011 ms / 2,000 ms
コード長 1,244 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 165,812 KB
最終ジャッジ日時 2024-07-16 01:37:43
合計ジャッジ時間 19,670 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
85,572 KB
testcase_01 AC 119 ms
85,668 KB
testcase_02 AC 119 ms
85,516 KB
testcase_03 AC 119 ms
85,504 KB
testcase_04 AC 377 ms
134,620 KB
testcase_05 AC 613 ms
131,180 KB
testcase_06 AC 487 ms
111,944 KB
testcase_07 AC 426 ms
111,120 KB
testcase_08 AC 515 ms
133,080 KB
testcase_09 AC 446 ms
110,892 KB
testcase_10 AC 324 ms
113,068 KB
testcase_11 AC 860 ms
153,728 KB
testcase_12 AC 600 ms
126,840 KB
testcase_13 AC 757 ms
141,104 KB
testcase_14 AC 259 ms
102,140 KB
testcase_15 AC 115 ms
85,588 KB
testcase_16 AC 121 ms
85,644 KB
testcase_17 AC 118 ms
85,648 KB
testcase_18 AC 570 ms
121,244 KB
testcase_19 AC 475 ms
109,640 KB
testcase_20 AC 821 ms
137,284 KB
testcase_21 AC 995 ms
154,232 KB
testcase_22 AC 553 ms
120,356 KB
testcase_23 AC 682 ms
130,364 KB
testcase_24 AC 684 ms
129,576 KB
testcase_25 AC 437 ms
111,824 KB
testcase_26 AC 1,011 ms
165,812 KB
testcase_27 AC 462 ms
146,288 KB
testcase_28 AC 161 ms
92,952 KB
testcase_29 AC 178 ms
103,452 KB
testcase_30 AC 249 ms
126,480 KB
testcase_31 AC 544 ms
116,448 KB
testcase_32 AC 669 ms
163,264 KB
testcase_33 AC 1,007 ms
156,092 KB
testcase_34 AC 141 ms
89,856 KB
testcase_35 AC 140 ms
89,736 KB
testcase_36 AC 479 ms
112,068 KB
testcase_37 AC 433 ms
115,668 KB
testcase_38 AC 580 ms
135,004 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 < s+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