結果

問題 No.848 なかよし旅行
ユーザー hedwig100hedwig100
提出日時 2020-04-17 16:17:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 557 ms / 2,000 ms
コード長 1,356 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 102,912 KB
最終ジャッジ日時 2024-11-08 01:15:21
合計ジャッジ時間 7,070 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 557 ms
102,912 KB
testcase_01 AC 49 ms
53,632 KB
testcase_02 AC 45 ms
52,864 KB
testcase_03 AC 46 ms
52,864 KB
testcase_04 AC 47 ms
53,120 KB
testcase_05 AC 47 ms
53,120 KB
testcase_06 AC 66 ms
63,488 KB
testcase_07 AC 47 ms
53,120 KB
testcase_08 AC 109 ms
76,032 KB
testcase_09 AC 131 ms
76,800 KB
testcase_10 AC 111 ms
76,160 KB
testcase_11 AC 220 ms
79,872 KB
testcase_12 AC 254 ms
80,768 KB
testcase_13 AC 258 ms
82,944 KB
testcase_14 AC 191 ms
78,464 KB
testcase_15 AC 265 ms
82,048 KB
testcase_16 AC 342 ms
86,912 KB
testcase_17 AC 266 ms
82,816 KB
testcase_18 AC 217 ms
79,360 KB
testcase_19 AC 213 ms
78,592 KB
testcase_20 AC 171 ms
77,312 KB
testcase_21 AC 294 ms
84,736 KB
testcase_22 AC 239 ms
86,400 KB
testcase_23 AC 187 ms
76,928 KB
testcase_24 AC 45 ms
52,608 KB
testcase_25 AC 367 ms
87,424 KB
testcase_26 AC 45 ms
52,480 KB
testcase_27 AC 45 ms
52,352 KB
testcase_28 AC 46 ms
52,864 KB
testcase_29 AC 45 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 12
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from  itertools import permutations
from heapq import heapify,heappop,heappush

def dijkstra(G,s = 0): #sを始点とした最短経を求める
    n = len(G)
    dist = [INF] * n
    dist[s] = 0

    q = [(0,s)]
    heapify(q)

    while q:
        d,v = heappop(q)
        if dist[v] < d:
            continue
        for e,cost in G[v]:
            if dist[e] > dist[v] + cost:
                dist[e] = dist[v] + cost
                heappush(q,(dist[e],e))
    
    return dist

def main():
    n,m,p,q,t = map(int,input().split())
    p -= 1
    q -= 1
    G = [[] for _ in range(n)]
    for _ in range(m):
        a,b,c = map(int,input().split())
        a -= 1
        b -= 1
        G[a].append((b,c))
        G[b].append((a,c))
    
    d0 = dijkstra(G)
    dp = dijkstra(G,p)
    dq = dijkstra(G,q)
    if d0[p] + dp[q] + dq[0] <= t:
        print(t)
        return

    ans = -1
    for i in range(n):
        if 2 * (d0[i] + dp[i] + dq[i]) <= t:
            print(t)
            return
    
    for i in range(n):
        for j in range(n):
            if d0[i] + d0[j] + max(dp[i] + dp[j],dq[i] + dq[j]) <= t:
                ans = max(ans,t - max(dp[i] + dp[j],dq[i] + dq[j]))
    print(ans)

if __name__ =='__main__':
    main()  
0