結果

問題 No.848 なかよし旅行
ユーザー AEnAEn
提出日時 2022-12-01 11:02:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 1,105 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 103,684 KB
最終ジャッジ日時 2024-10-08 11:07:46
合計ジャッジ時間 7,755 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 541 ms
103,684 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 39 ms
52,992 KB
testcase_04 AC 39 ms
53,120 KB
testcase_05 AC 38 ms
53,376 KB
testcase_06 AC 59 ms
65,664 KB
testcase_07 AC 39 ms
53,248 KB
testcase_08 AC 95 ms
76,556 KB
testcase_09 AC 122 ms
77,312 KB
testcase_10 AC 100 ms
76,416 KB
testcase_11 AC 270 ms
81,596 KB
testcase_12 AC 337 ms
82,436 KB
testcase_13 AC 315 ms
83,892 KB
testcase_14 AC 259 ms
80,080 KB
testcase_15 AC 334 ms
84,140 KB
testcase_16 AC 394 ms
88,728 KB
testcase_17 AC 303 ms
84,140 KB
testcase_18 AC 262 ms
80,572 KB
testcase_19 AC 266 ms
80,696 KB
testcase_20 AC 151 ms
78,460 KB
testcase_21 AC 348 ms
86,124 KB
testcase_22 AC 254 ms
87,440 KB
testcase_23 AC 200 ms
78,208 KB
testcase_24 AC 38 ms
52,224 KB
testcase_25 AC 415 ms
88,724 KB
testcase_26 AC 38 ms
52,864 KB
testcase_27 AC 37 ms
52,480 KB
testcase_28 AC 38 ms
52,480 KB
testcase_29 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
INF = float('inf')

def dijkstra(s, n):
    dist = [INF] * n
    hq = [(0, s)] # (distance, node)
    dist[s] = 0
    seen = [False] * n
    while hq:
        dis, v = heappop(hq)
        if dist[v] < dis:
            continue
        seen[v] = True
        for to, cost in G[v]:
            if seen[to] == False and dist[v] + cost < dist[to]:
                dist[to] = dist[v] + cost
                heappush(hq, (dist[to], to))
    return dist

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

dis_0 = dijkstra(0,N)
dis_p = dijkstra(P-1,N)
dis_q = dijkstra(Q-1,N)
if max(dis_p[0]*2,dis_q[0]*2)>T:
    exit(print(-1))

if 2*min(dis_p[0],dis_q[0])+2*dis_p[Q-1]<=T or dis_p[0]+dis_q[0]+dis_p[Q-1]<=T:
    exit(print(T))

res = 0
for i in range(N):
    for j in range(N):
        if dis_0[i]+dis_0[j]+max(dis_p[i]+dis_p[j],dis_q[i]+dis_q[j])<=T:
            res = max(res,T-max(dis_p[i]+dis_p[j],dis_q[i]+dis_q[j]))
print(res)
0