結果
問題 | No.2805 Go to School |
ユーザー | YuuuT |
提出日時 | 2024-07-12 21:34:18 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,141 bytes |
コンパイル時間 | 284 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 190,440 KB |
最終ジャッジ日時 | 2024-07-12 21:34:38 |
合計ジャッジ時間 | 17,596 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
54,272 KB |
testcase_01 | AC | 44 ms
54,144 KB |
testcase_02 | AC | 42 ms
54,912 KB |
testcase_03 | AC | 42 ms
54,400 KB |
testcase_04 | AC | 760 ms
138,688 KB |
testcase_05 | WA | - |
testcase_06 | AC | 339 ms
103,360 KB |
testcase_07 | AC | 646 ms
139,712 KB |
testcase_08 | AC | 435 ms
101,364 KB |
testcase_09 | AC | 197 ms
91,776 KB |
testcase_10 | AC | 485 ms
146,048 KB |
testcase_11 | AC | 285 ms
105,472 KB |
testcase_12 | AC | 424 ms
113,768 KB |
testcase_13 | AC | 127 ms
90,164 KB |
testcase_14 | AC | 44 ms
54,144 KB |
testcase_15 | AC | 44 ms
54,784 KB |
testcase_16 | AC | 44 ms
54,528 KB |
testcase_17 | WA | - |
testcase_18 | AC | 336 ms
99,592 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 323 ms
111,840 KB |
testcase_22 | WA | - |
testcase_23 | AC | 841 ms
123,072 KB |
testcase_24 | AC | 382 ms
108,704 KB |
testcase_25 | AC | 621 ms
164,548 KB |
testcase_26 | AC | 415 ms
151,040 KB |
testcase_27 | AC | 88 ms
84,096 KB |
testcase_28 | AC | 98 ms
85,072 KB |
testcase_29 | AC | 210 ms
118,528 KB |
testcase_30 | AC | 662 ms
110,592 KB |
testcase_31 | AC | 1,637 ms
190,440 KB |
testcase_32 | AC | 1,363 ms
157,360 KB |
testcase_33 | AC | 59 ms
64,512 KB |
testcase_34 | AC | 54 ms
62,848 KB |
testcase_35 | AC | 457 ms
105,196 KB |
testcase_36 | AC | 391 ms
109,484 KB |
testcase_37 | AC | 331 ms
128,512 KB |
ソースコード
# oj t -c "python3 main.py" import sys,math from collections import defaultdict,deque from itertools import combinations,permutations,accumulate,product from bisect import bisect_left,bisect_right from heapq import heappop,heappush,heapify #from sortedcontainers import SortedList,SortedSet def input():return sys.stdin.readline().rstrip() def ii(): return int(input()) def ms(): return map(int, input().split()) def li(): return list(map(int,input().split())) inf = pow(10,18) mod = 998244353 #////////////////////////////////// N,M,L,S,E = ms() G = [set() for _ in range(N+1)] for _ in range(M): u,v,c = ms() if u==v: continue G[u].add((v,c)) G[v].add((u,c)) T = set(li()) H = [] heappush(H,(0,1,0)) dist = [[inf,inf] for _ in range(N+1)] while H: c,v,f = heappop(H) if v==N and f==1: print(c) exit() if dist[v][f]<=c: continue dist[v][f] = c for v2,c2 in G[v]: if f==0 and v2 in T and c+c2<S+E: if dist[v2][1]<=max(c+c2,S)+1: continue heappush(H,(max(c+c2,S)+1,v2,1)) else: if f==0 and c+c2>=S+E: continue if dist[v2][f]<=c+c2: continue heappush(H,(c+c2,v2,f)) print(-1)