結果

問題 No.848 なかよし旅行
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-10 19:21:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 620 ms / 2,000 ms
コード長 998 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 103,408 KB
最終ジャッジ日時 2024-05-05 05:41:59
合計ジャッジ時間 8,493 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 620 ms
103,408 KB
testcase_01 AC 50 ms
61,440 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 39 ms
53,504 KB
testcase_04 AC 39 ms
52,992 KB
testcase_05 AC 41 ms
53,120 KB
testcase_06 AC 60 ms
65,152 KB
testcase_07 AC 51 ms
60,544 KB
testcase_08 AC 103 ms
76,552 KB
testcase_09 AC 120 ms
77,696 KB
testcase_10 AC 101 ms
76,672 KB
testcase_11 AC 308 ms
81,284 KB
testcase_12 AC 316 ms
82,744 KB
testcase_13 AC 338 ms
83,432 KB
testcase_14 AC 269 ms
80,596 KB
testcase_15 AC 334 ms
84,440 KB
testcase_16 AC 499 ms
89,228 KB
testcase_17 AC 322 ms
84,244 KB
testcase_18 AC 292 ms
80,700 KB
testcase_19 AC 287 ms
80,976 KB
testcase_20 AC 215 ms
78,136 KB
testcase_21 AC 357 ms
86,448 KB
testcase_22 AC 259 ms
87,552 KB
testcase_23 AC 222 ms
77,676 KB
testcase_24 AC 40 ms
52,480 KB
testcase_25 AC 423 ms
88,668 KB
testcase_26 AC 43 ms
52,608 KB
testcase_27 AC 44 ms
52,736 KB
testcase_28 AC 39 ms
52,352 KB
testcase_29 AC 38 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify as hpi , heappop as hpop , heappush as hpush
n,m,p,q,t=map(int,input().split())
g = [[] for i in range(n+1)]
for _ in range(m):
    x,y,z = map(int,input().split())
    g[x].append((y,z))
    g[y].append((x,z))

def  daiku(i):
    inf=float('inf')
    d = [inf for i in range(n+1)]
    d[i] = 0
    done=[0 for i in range(n+1)]
    hp=[]
    hpush(hp,(d[i],i))
    
    while hp:
        _ ,now= hpop(hp)
        if done[now]:
            continue
        done[now] = 1
        for go,cost in g[now]:
            if d[go] > d[now] + cost:
                d[go] = d[now] + cost
                hpush(hp,(d[go],go))

    return d

one=daiku(1)
ps=daiku(p)
qs=daiku(q)

ans = -1
if one[p]+ps[q]+qs[1] <= t:
    ans = t
for i in range(1,n+1):
    for j in range(1,n+1):
        tt=one[i] + max(ps[i]+ ps[j],qs[j] + qs[i]) +one[j]
        sepa=max(ps[i] + ps[j] , qs[i] + qs[j])
        if tt > t:
            continue
        ans=max(t-sepa,ans)

print(ans)
        
        
0