結果
問題 | No.848 なかよし旅行 |
ユーザー | mkawa2 |
提出日時 | 2021-03-16 16:15:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,416 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 44,564 KB |
最終ジャッジ日時 | 2024-11-08 01:57:29 |
合計ジャッジ時間 | 8,060 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,140 ms
44,564 KB |
testcase_01 | AC | 32 ms
10,880 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 31 ms
10,880 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 32 ms
10,880 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 331 ms
24,960 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 49 ms
11,776 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 31 ms
10,880 KB |
testcase_25 | WA | - |
testcase_26 | AC | 30 ms
10,880 KB |
testcase_27 | AC | 32 ms
10,880 KB |
testcase_28 | AC | 30 ms
10,880 KB |
testcase_29 | AC | 32 ms
11,008 KB |
ソースコード
import sys sys.setrecursionlimit(10**6) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.buffer.readline()) def LI(): return list(map(int, sys.stdin.buffer.readline().split())) def LI1(): return list(map(int1, sys.stdin.buffer.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def BI(): return sys.stdin.buffer.readline().rstrip() def SI(): return sys.stdin.buffer.readline().rstrip().decode() # dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = 10**16 # md = 998244353 md = 10**9+7 from heapq import * n,m,p,q,t=LI() p,q=p-1,q-1 to=[[] for _ in range(n)] for _ in range(m): u,v,c=LI() u,v=u-1,v-1 to[u].append((v,c)) to[v].append((u,c)) def dijkstra(u): dist=[inf]*n dist[u]=0 hp=[(0,u)] while hp: d,u=heappop(hp) if d>dist[u]:continue for v,c in to[u]: nd=d+c if nd>=dist[v]:continue dist[v]=nd heappush(hp,(nd,v)) return dist to0=dijkstra(0) top=dijkstra(p) toq=dijkstra(q) if to0[p]+to0[q]+top[q]<=t: print(t) exit() ans=inf for u in range(n): mx=max(top[u],toq[u]) if (to0[u]+mx)*2>t:continue ans=min(ans,mx) if ans==inf:ans=-1 else:ans=t-ans*2 print(ans)