結果

問題 No.848 なかよし旅行
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-11 05:45:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 579 ms / 2,000 ms
コード長 1,490 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 101,132 KB
最終ジャッジ日時 2024-11-08 01:17:37
合計ジャッジ時間 8,061 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 463 ms
101,132 KB
testcase_01 AC 45 ms
53,120 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 43 ms
52,992 KB
testcase_04 AC 44 ms
53,504 KB
testcase_05 AC 45 ms
52,736 KB
testcase_06 AC 80 ms
73,984 KB
testcase_07 AC 45 ms
53,632 KB
testcase_08 AC 103 ms
76,608 KB
testcase_09 AC 119 ms
77,276 KB
testcase_10 AC 109 ms
76,808 KB
testcase_11 AC 242 ms
82,304 KB
testcase_12 AC 298 ms
85,816 KB
testcase_13 AC 361 ms
90,016 KB
testcase_14 AC 177 ms
77,788 KB
testcase_15 AC 349 ms
88,704 KB
testcase_16 AC 579 ms
100,772 KB
testcase_17 AC 366 ms
91,572 KB
testcase_18 AC 236 ms
81,368 KB
testcase_19 AC 202 ms
80,640 KB
testcase_20 AC 105 ms
77,168 KB
testcase_21 AC 434 ms
94,660 KB
testcase_22 AC 454 ms
99,660 KB
testcase_23 AC 149 ms
76,800 KB
testcase_24 AC 41 ms
52,480 KB
testcase_25 AC 533 ms
96,180 KB
testcase_26 AC 44 ms
52,480 KB
testcase_27 AC 45 ms
52,992 KB
testcase_28 AC 43 ms
52,864 KB
testcase_29 AC 44 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

def main():
    n, m, p, q, t = map(int, input().split())
    p -= 1
    q -= 1
    edge = [[] for _ in range(n)]
    for i in range(m):
        a, b, c = map(int, input().split())
        a, b = a-1, b-1
        edge[a].append((c, b))
        edge[b].append((c, a))

    import heapq
    INF = 10**18
    def dijkstra_heap(s, edge, n):
        d = [INF] * n
        used = [True] * n #True: not used
        d[s] = 0
        used[s] = False
        edgelist = []
        for e in edge[s]:
            heapq.heappush(edgelist,e)
        while len(edgelist):
            minedge = heapq.heappop(edgelist)
            if not used[minedge[1]]:
                continue
            v = minedge[1]
            d[v] = minedge[0]
            used[v] = False
            for e in edge[v]:
                if used[e[1]]:
                    heapq.heappush(edgelist,(e[0]+d[v],e[1]))
        return d

    d1 = dijkstra_heap(0, edge, n)
    dp = dijkstra_heap(p, edge, n)
    dq = dijkstra_heap(q, edge, n)

    if d1[p]+dp[q]+d1[q] <= t:
        print(t)
        exit()

    if 2*d1[p]> t or 2*d1[q] > t:
        print(-1)
        exit()

    ans = -1
    for i in range(n):
        for j in range(n):
            temp = d1[i]+max(dp[i]+dp[j], dq[i]+dq[j])+d1[j]
            #print(r, temp)
            if temp <= t:
                temp2 = d1[i]+d1[j]+t-temp
                ans = max(temp2, ans)

    print(ans)

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