結果

問題 No.2354 Poor Sight in Winter
ユーザー yabityabit
提出日時 2023-07-05 17:04:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,064 ms / 2,000 ms
コード長 1,183 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 231,296 KB
最終ジャッジ日時 2024-07-19 11:19:31
合計ジャッジ時間 9,961 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,120 KB
testcase_01 AC 47 ms
52,992 KB
testcase_02 AC 40 ms
52,864 KB
testcase_03 AC 39 ms
52,992 KB
testcase_04 AC 40 ms
52,864 KB
testcase_05 AC 44 ms
52,736 KB
testcase_06 AC 43 ms
53,120 KB
testcase_07 AC 43 ms
52,608 KB
testcase_08 AC 42 ms
52,608 KB
testcase_09 AC 51 ms
61,568 KB
testcase_10 AC 52 ms
62,080 KB
testcase_11 AC 459 ms
217,856 KB
testcase_12 AC 459 ms
217,472 KB
testcase_13 AC 755 ms
231,296 KB
testcase_14 AC 1,064 ms
226,176 KB
testcase_15 AC 702 ms
217,984 KB
testcase_16 AC 905 ms
218,624 KB
testcase_17 AC 764 ms
230,400 KB
testcase_18 AC 291 ms
101,816 KB
testcase_19 AC 491 ms
164,096 KB
testcase_20 AC 342 ms
108,448 KB
testcase_21 AC 146 ms
78,068 KB
testcase_22 AC 219 ms
84,340 KB
testcase_23 AC 264 ms
86,004 KB
testcase_24 AC 406 ms
143,488 KB
testcase_25 AC 157 ms
80,888 KB
testcase_26 AC 148 ms
79,560 KB
testcase_27 AC 92 ms
76,288 KB
testcase_28 AC 107 ms
76,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N, K = map(int, input().split())
sx, sy, gx, gy = map(int, input().split())
X = [sx, gx]
Y = [sy, gy]
for i in range(N):
    x, y = map(int, input().split())
    X.append(x)
    Y.append(y)

D = [[0] * (N + 2) for _ in range(N + 2)]
for i in range(N + 2):
    for j in range(i + 1, N + 2):
        D[i][j] = abs(X[i] - X[j]) + abs(Y[i] - Y[j])
        D[j][i] = abs(X[i] - X[j]) + abs(Y[i] - Y[j])


def dijkstra(start, G):
    INF = 10**9
    dist = [INF] * len(G)
    hq = [(0, start)]
    heapq.heapify(hq)
    dist[start] = 0
    while hq:
        v = heapq.heappop(hq)[1]
        for u, cost in G[v]:
            if dist[v] + cost < dist[u]:
                dist[u] = dist[v] + cost
                heapq.heappush(hq, (dist[u], u))
    return dist


def solve(P):
    G = [[] for _ in range(N + 2)]
    for i in range(N + 2):
        for j in range(i + 1, N + 2):
            di = -(-D[i][j] // P) - 1
            G[i].append((j, di))
            G[j].append((i, di))
    dist = dijkstra(0, G)
    return dist[1] <= K


ng, ok = 0, 2 * 10**5 + 10
while ok - ng > 1:
    mid = (ng + ok) // 2
    if solve(mid):
        ok = mid
    else:
        ng = mid
print(ok)
0