結果

問題 No.2354 Poor Sight in Winter
ユーザー ShirotsumeShirotsume
提出日時 2023-04-11 11:40:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 887 ms / 2,000 ms
コード長 1,538 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 282,892 KB
最終ジャッジ日時 2024-10-07 03:52:58
合計ジャッジ時間 10,290 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,436 KB
testcase_01 AC 40 ms
55,876 KB
testcase_02 AC 40 ms
55,116 KB
testcase_03 AC 40 ms
55,496 KB
testcase_04 AC 39 ms
55,320 KB
testcase_05 AC 39 ms
54,860 KB
testcase_06 AC 39 ms
55,252 KB
testcase_07 AC 42 ms
55,324 KB
testcase_08 AC 41 ms
55,600 KB
testcase_09 AC 56 ms
66,944 KB
testcase_10 AC 60 ms
67,608 KB
testcase_11 AC 703 ms
282,892 KB
testcase_12 AC 729 ms
281,872 KB
testcase_13 AC 887 ms
279,680 KB
testcase_14 AC 884 ms
276,528 KB
testcase_15 AC 859 ms
276,676 KB
testcase_16 AC 883 ms
279,828 KB
testcase_17 AC 852 ms
279,428 KB
testcase_18 AC 327 ms
109,380 KB
testcase_19 AC 541 ms
191,116 KB
testcase_20 AC 359 ms
121,024 KB
testcase_21 AC 149 ms
78,012 KB
testcase_22 AC 240 ms
90,132 KB
testcase_23 AC 237 ms
90,080 KB
testcase_24 AC 475 ms
170,344 KB
testcase_25 AC 198 ms
82,468 KB
testcase_26 AC 202 ms
80,920 KB
testcase_27 AC 109 ms
76,936 KB
testcase_28 AC 142 ms
77,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

def Dijkstra(s, graph):
    INF = 2 ** 63 - 1
    import heapq
    n = len(graph)
    dist = [INF] * n
    dist[s] = 0
    bef = [0] * n
    bef[s] = s
    hq = [(0, s)]
    heapq.heapify(hq)
    while hq:
        c, now = heapq.heappop(hq)
        
        if c > dist[now]:
            continue
        for to, cost in graph[now]:
            if dist[now] + cost < dist[to]:
                dist[to] = cost + dist[now]
                bef[to] = now
                heapq.heappush(hq, (dist[to], + to))
    return dist, bef

def DijkstraRest(bef, t):
    now = t
    ret = []
    while bef[now] != now:
        ret.append((bef[now], now))
        now = bef[now]
    ret.reverse()
    return ret

n, k = mi()

sx, sy, gx, gy = mi()
XY = [(sx, sy), (gx, gy)] + [tuple(li()) for _ in range(n)]


def check(x):
    graph = [[] for _ in range(n + 2)]

    for i in range(n + 2):
        x1, y1 = XY[i]
        for j in range(i + 1, n + 2):
            x2, y2 = XY[j]
            dist = abs(x2 - x1) + abs(y2 - y1)
            cost = (dist - 1) // x
            graph[i].append((j, cost))
            graph[j].append((i, cost))
    d, _ = Dijkstra(0, graph)
    return d[1] <= k

ok = 10 ** 9

ng = 0

while abs(ok - ng) > 1:
    mid = (ok + ng) // 2
    if check(mid):
        ok = mid
    else:
        ng = mid
print(ok)
0