結果

問題 No.848 なかよし旅行
ユーザー Coki628Coki628
提出日時 2020-08-13 12:06:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,932 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 94,848 KB
最終ジャッジ日時 2024-04-18 01:27:09
合計ジャッジ時間 7,230 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 457 ms
94,848 KB
testcase_01 AC 58 ms
61,312 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 47 ms
53,248 KB
testcase_05 WA -
testcase_06 AC 66 ms
63,872 KB
testcase_07 AC 56 ms
61,184 KB
testcase_08 WA -
testcase_09 AC 124 ms
77,312 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 279 ms
82,560 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 191 ms
77,824 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 47 ms
52,992 KB
testcase_25 WA -
testcase_26 AC 46 ms
53,120 KB
testcase_27 AC 47 ms
53,248 KB
testcase_28 AC 46 ms
53,248 KB
testcase_29 AC 46 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def input(): return sys.stdin.readline().strip()
def list2d(a, b, c): return [[c] * b for i in range(a)]
def list3d(a, b, c, d): return [[[d] * c for j in range(b)] for i in range(a)]
def list4d(a, b, c, d, e): return [[[[e] * d for j in range(c)] for j in range(b)] for i in range(a)]
def ceil(x, y=1): return int(-(-x // y))
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(N=None): return list(MAP()) if N is None else [INT() for i in range(N)]
def Yes(): print('Yes')
def No(): print('No')
def YES(): print('YES')
def NO(): print('NO')
sys.setrecursionlimit(10 ** 9)
INF = 10 ** 19
MOD = 10 ** 9 + 7
EPS = 10 ** -10

def dijkstra(nodes: list, src: int) -> list:
    """ ダイクストラ高速化版(隣接リスト(0-indexed), 始点) """
    from heapq import heappush, heappop

    N = len(nodes)
    res = [INF] * N
    que = [src]
    res[src] = 0
    while que:
        cur = heappop(que)
        dist = cur // N
        cur %= N
        if res[cur] < dist:
            continue    
        for nxt, cost in nodes[cur]:
            if dist + cost < res[nxt]:
                res[nxt] = dist + cost
                heappush(que, (dist+cost)*N+nxt)
    return res

N, M, p, q, t = MAP()
p -= 1; q -= 1
nodes = [[] for i in range(N)]
for i in range(M):
    a, b, c = MAP()
    a -= 1; b -= 1

    nodes[a].append((b, c))
    nodes[b].append((a, c))

dist1 = dijkstra(nodes, 0)
dist2 = dijkstra(nodes, p)
dist3 = dijkstra(nodes, q)

ans = -1
for i in range(N):
    cost1 = dist1[i] + max(dist2[i], dist3[i])
    cost2 = dist1[i] + dist2[i] + dist3[i]
    for j in range(N):
        cost3 = dist1[j] + max(dist2[j], dist3[j])
        have = t - cost1 - cost3
        if have >= 0:
            ans = max(ans, have + dist1[i] + dist1[j])
        cost4 = dist1[j] + dist2[j] + dist3[j]
        have = t - cost2 - cost4
        if have >= 0:
            ans = max(ans, t)
print(ans)
0