結果

問題 No.848 なかよし旅行
ユーザー tcltktcltk
提出日時 2021-01-31 05:05:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 491 ms / 2,000 ms
コード長 1,748 bytes
コンパイル時間 485 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-11-08 01:22:51
合計ジャッジ時間 6,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 491 ms
102,016 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 41 ms
52,608 KB
testcase_03 AC 44 ms
53,504 KB
testcase_04 AC 42 ms
52,760 KB
testcase_05 AC 43 ms
52,736 KB
testcase_06 AC 54 ms
61,568 KB
testcase_07 AC 43 ms
53,248 KB
testcase_08 AC 92 ms
76,544 KB
testcase_09 AC 108 ms
76,928 KB
testcase_10 AC 88 ms
76,536 KB
testcase_11 AC 202 ms
80,128 KB
testcase_12 AC 220 ms
81,000 KB
testcase_13 AC 258 ms
82,048 KB
testcase_14 AC 205 ms
78,336 KB
testcase_15 AC 241 ms
82,176 KB
testcase_16 AC 311 ms
86,912 KB
testcase_17 AC 243 ms
82,688 KB
testcase_18 AC 203 ms
79,360 KB
testcase_19 AC 197 ms
79,232 KB
testcase_20 AC 164 ms
77,952 KB
testcase_21 AC 266 ms
84,224 KB
testcase_22 AC 197 ms
85,632 KB
testcase_23 AC 181 ms
77,184 KB
testcase_24 AC 44 ms
52,608 KB
testcase_25 AC 353 ms
86,784 KB
testcase_26 AC 44 ms
52,608 KB
testcase_27 AC 44 ms
52,352 KB
testcase_28 AC 45 ms
52,608 KB
testcase_29 AC 45 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """5 6 4 5 8
# 1 2 2
# 2 5 3
# 2 4 1
# 3 4 3
# 1 3 2
# 3 5 1
# """
# sys.stdin = io.StringIO(_INPUT)

def dijkstra(G, N, start):
    dist = [10**20 for _ in range(N)]
    hq = []
    heapq.heappush(hq, (0, start))
    dist[start] = 0
    while hq:
        d, p = heapq.heappop(hq)
        if d > dist[p]:
            continue
        for (p1, w1) in G[p]:
            d1 = dist[p] + w1
            if d1 < dist[p1]:
                dist[p1] = d1
                heapq.heappush(hq, (dist[p1], p1))
    return dist

def main():
    N, M, P, Q, T = map(int, input().split())
    P -= 1
    Q -= 1
    G = [list() for _ in range(N)]
    for _ in range(M):
        a, b, c = map(int, input().split())
        G[a-1].append((b-1, c))
        G[b-1].append((a-1, c))

    dist_0 = dijkstra(G, N, 0)
    dist_P = dijkstra(G, N, P)
    dist_Q = dijkstra(G, N, Q)

    if dist_0[P] + dist_P[Q] + dist_0[Q] <= T:
        print(T)
    
    else:
        max_t = -1
        for i in range(N):
            for j in range(i, N):
                # 0 -> i -> P -> j -> 0
                # 0 -> i -> Q -> j -> 0
                t_total1 = dist_0[i] + dist_P[i] + dist_P[j] + dist_0[j]
                t_total2 = dist_0[i] + dist_Q[i] + dist_Q[j] + dist_0[j]
                if t_total1 <= T and t_total2 <= T:
                    t = T - max(dist_P[i] + dist_P[j], dist_Q[i] + dist_Q[j])
                    max_t = max(max_t, t)
        print(max_t)


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