結果

問題 No.848 なかよし旅行
ユーザー mkawa2mkawa2
提出日時 2021-03-16 16:26:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 542 ms / 2,000 ms
コード長 1,455 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 103,936 KB
最終ジャッジ日時 2024-11-08 02:04:45
合計ジャッジ時間 6,901 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 542 ms
103,936 KB
testcase_01 AC 47 ms
53,376 KB
testcase_02 AC 43 ms
53,120 KB
testcase_03 AC 44 ms
53,376 KB
testcase_04 AC 44 ms
52,992 KB
testcase_05 AC 44 ms
52,736 KB
testcase_06 AC 61 ms
63,360 KB
testcase_07 AC 45 ms
53,504 KB
testcase_08 AC 102 ms
77,568 KB
testcase_09 AC 119 ms
77,312 KB
testcase_10 AC 104 ms
76,800 KB
testcase_11 AC 248 ms
81,152 KB
testcase_12 AC 271 ms
82,176 KB
testcase_13 AC 285 ms
83,328 KB
testcase_14 AC 228 ms
78,976 KB
testcase_15 AC 285 ms
83,072 KB
testcase_16 AC 338 ms
88,192 KB
testcase_17 AC 267 ms
84,352 KB
testcase_18 AC 241 ms
80,512 KB
testcase_19 AC 244 ms
80,256 KB
testcase_20 AC 194 ms
78,464 KB
testcase_21 AC 285 ms
85,376 KB
testcase_22 AC 230 ms
87,168 KB
testcase_23 AC 186 ms
77,568 KB
testcase_24 AC 44 ms
53,120 KB
testcase_25 AC 352 ms
88,576 KB
testcase_26 AC 43 ms
52,608 KB
testcase_27 AC 44 ms
52,608 KB
testcase_28 AC 43 ms
52,992 KB
testcase_29 AC 43 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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):
    for v in range(n):
        mx=max(top[u]+top[v],toq[u]+toq[v])
        if to0[u]+to0[v]+mx>t:continue
        ans=max(ans,t-mx)

if ans==-inf:ans=-1
print(ans)
0