結果

問題 No.848 なかよし旅行
ユーザー irumo8202irumo8202
提出日時 2022-02-06 22:00:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 537 ms / 2,000 ms
コード長 1,099 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 103,812 KB
最終ジャッジ日時 2024-06-11 14:11:13
合計ジャッジ時間 7,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 537 ms
103,812 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 36 ms
52,864 KB
testcase_03 AC 38 ms
52,864 KB
testcase_04 AC 37 ms
53,376 KB
testcase_05 AC 38 ms
53,248 KB
testcase_06 AC 52 ms
64,376 KB
testcase_07 AC 38 ms
53,760 KB
testcase_08 AC 87 ms
76,364 KB
testcase_09 AC 108 ms
77,440 KB
testcase_10 AC 89 ms
76,468 KB
testcase_11 AC 239 ms
81,184 KB
testcase_12 AC 255 ms
82,508 KB
testcase_13 AC 270 ms
82,604 KB
testcase_14 AC 210 ms
79,512 KB
testcase_15 AC 283 ms
83,000 KB
testcase_16 AC 346 ms
87,808 KB
testcase_17 AC 282 ms
84,028 KB
testcase_18 AC 240 ms
80,704 KB
testcase_19 AC 238 ms
80,428 KB
testcase_20 AC 180 ms
78,084 KB
testcase_21 AC 295 ms
85,588 KB
testcase_22 AC 223 ms
87,296 KB
testcase_23 AC 184 ms
77,716 KB
testcase_24 AC 37 ms
52,352 KB
testcase_25 AC 353 ms
88,704 KB
testcase_26 AC 39 ms
52,608 KB
testcase_27 AC 37 ms
52,624 KB
testcase_28 AC 34 ms
52,736 KB
testcase_29 AC 36 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

INF = 1 << 60


def dijkstra(s, edge):
    n = len(edge)
    dist = [INF] * n
    dist[s] = 0
    hq = []
    heappush(hq, (dist[s], s))

    while hq:
        dist_v, v = heappop(hq)
        if dist_v > dist[v]:
            continue
        for cost, nx in edge[v]:
            if dist[nx] > dist[v] + cost:
                dist[nx] = dist[v] + cost
                heappush(hq, (dist[nx], nx))
    return dist


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((c, b))
    G[b].append((c, a))

dist_0 = dijkstra(0, G)
dist_p = dijkstra(P, G)
dist_q = dijkstra(Q, G)


tmp = dist_0[P] + dist_p[Q] + dist_q[0]
if tmp <= T:
    print(T)
    exit()

ans = -1

for u in range(N):
    for v in range(N):
        tmp = dist_0[u]
        tmp += max(dist_p[u] + dist_p[v], dist_q[u] + dist_q[v])
        tmp += dist_0[v]
        if tmp <= T:
            ans = max(ans, T - max(dist_p[u] + dist_p[v], dist_q[u] + dist_q[v]))

print(ans)
0