結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
85,504 KB
testcase_01 AC 124 ms
85,492 KB
testcase_02 AC 121 ms
85,376 KB
testcase_03 AC 121 ms
85,248 KB
testcase_04 AC 617 ms
130,948 KB
testcase_05 AC 505 ms
112,152 KB
testcase_06 AC 420 ms
111,204 KB
testcase_07 AC 507 ms
132,736 KB
testcase_08 AC 473 ms
111,344 KB
testcase_09 AC 353 ms
112,860 KB
testcase_10 WA -
testcase_11 AC 616 ms
126,336 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 128 ms
85,376 KB
testcase_16 AC 125 ms
85,624 KB
testcase_17 WA -
testcase_18 AC 483 ms
109,696 KB
testcase_19 AC 785 ms
136,448 KB
testcase_20 WA -
testcase_21 AC 548 ms
119,816 KB
testcase_22 WA -
testcase_23 AC 675 ms
129,920 KB
testcase_24 AC 453 ms
111,232 KB
testcase_25 AC 999 ms
165,556 KB
testcase_26 AC 475 ms
145,920 KB
testcase_27 AC 156 ms
92,800 KB
testcase_28 AC 181 ms
103,296 KB
testcase_29 AC 263 ms
126,208 KB
testcase_30 AC 471 ms
115,328 KB
testcase_31 AC 682 ms
162,752 KB
testcase_32 WA -
testcase_33 AC 149 ms
89,472 KB
testcase_34 AC 150 ms
89,600 KB
testcase_35 AC 525 ms
112,256 KB
testcase_36 WA -
testcase_37 AC 608 ms
134,368 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 <= 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