結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 667 ms
103,144 KB
testcase_01 AC 50 ms
61,348 KB
testcase_02 AC 39 ms
53,080 KB
testcase_03 AC 42 ms
54,484 KB
testcase_04 AC 42 ms
54,956 KB
testcase_05 AC 41 ms
53,512 KB
testcase_06 AC 58 ms
65,708 KB
testcase_07 AC 48 ms
61,232 KB
testcase_08 AC 99 ms
76,612 KB
testcase_09 AC 119 ms
77,504 KB
testcase_10 AC 100 ms
76,716 KB
testcase_11 AC 304 ms
81,156 KB
testcase_12 AC 342 ms
82,996 KB
testcase_13 AC 369 ms
83,572 KB
testcase_14 AC 289 ms
80,344 KB
testcase_15 AC 363 ms
84,328 KB
testcase_16 AC 449 ms
89,484 KB
testcase_17 AC 350 ms
84,364 KB
testcase_18 AC 294 ms
80,484 KB
testcase_19 AC 299 ms
80,732 KB
testcase_20 AC 228 ms
78,472 KB
testcase_21 AC 377 ms
86,188 KB
testcase_22 AC 256 ms
87,240 KB
testcase_23 AC 224 ms
77,760 KB
testcase_24 AC 41 ms
53,664 KB
testcase_25 AC 447 ms
88,668 KB
testcase_26 AC 40 ms
52,928 KB
testcase_27 AC 40 ms
53,252 KB
testcase_28 AC 40 ms
52,968 KB
testcase_29 AC 40 ms
53,632 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