結果

問題 No.848 なかよし旅行
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-22 14:01:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 475 ms / 2,000 ms
コード長 959 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,736 KB
実行使用メモリ 107,900 KB
最終ジャッジ日時 2024-09-20 12:34:33
合計ジャッジ時間 8,496 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 465 ms
107,900 KB
testcase_01 AC 44 ms
54,564 KB
testcase_02 AC 40 ms
53,292 KB
testcase_03 AC 40 ms
54,240 KB
testcase_04 AC 41 ms
53,636 KB
testcase_05 AC 40 ms
53,976 KB
testcase_06 AC 57 ms
64,712 KB
testcase_07 AC 42 ms
54,340 KB
testcase_08 AC 92 ms
76,660 KB
testcase_09 AC 113 ms
77,444 KB
testcase_10 AC 92 ms
76,936 KB
testcase_11 AC 300 ms
84,752 KB
testcase_12 AC 332 ms
87,352 KB
testcase_13 AC 382 ms
89,236 KB
testcase_14 AC 277 ms
80,648 KB
testcase_15 AC 365 ms
89,324 KB
testcase_16 AC 467 ms
99,800 KB
testcase_17 AC 368 ms
91,708 KB
testcase_18 AC 293 ms
83,176 KB
testcase_19 AC 302 ms
83,076 KB
testcase_20 AC 230 ms
78,752 KB
testcase_21 AC 398 ms
95,428 KB
testcase_22 AC 284 ms
97,940 KB
testcase_23 AC 223 ms
78,208 KB
testcase_24 AC 40 ms
54,136 KB
testcase_25 AC 475 ms
100,164 KB
testcase_26 AC 39 ms
53,380 KB
testcase_27 AC 40 ms
53,952 KB
testcase_28 AC 39 ms
53,796 KB
testcase_29 AC 41 ms
54,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush,heappop

n,m,p,q,t = map(int,input().split())
e = [[] for i in range(n)]
for _ in range(m):
    a,b,c = map(int,input().split())
    a,b = a-1,b-1
    e[a].append([b,c])
    e[b].append([a,c])

p,q = p-1,q-1

inf = 10**20
mod = 1<<16
def dijkstra(x):
    dis = [inf]*n
    dis[x] = 0
    h = [x]
    while h:
        d,now = divmod(heappop(h),mod)
        if dis[now] != d:
            continue
        for nex,c in e[now]:
            if dis[nex] > d+c:
                dis[nex] = d+c
                heappush(h,((d+c)<<16)+nex)
    return dis


dis0 = dijkstra(0)
disp = dijkstra(p)
disq = dijkstra(q)
ans = -1

if dis0[p]+dis0[q]+disp[q] <= t:
    print(t)
    exit()
    
for i in range(n):
    for j in range(n):
        t1 = dis0[i]
        t2 = dis0[j]
        
        t3 = max(disp[i]+disp[j],disq[i]+disq[j])

        if t1+t2+t3 > t:
            continue
        ans = max(ans,t-t3)
if ans == inf:
    ans = -1
print(ans)
0