結果

問題 No.2354 Poor Sight in Winter
ユーザー yabityabit
提出日時 2023-07-05 17:05:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,000 ms / 2,000 ms
コード長 1,175 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 225,152 KB
最終ジャッジ日時 2024-07-19 11:20:09
合計ジャッジ時間 8,651 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 37 ms
52,992 KB
testcase_02 AC 38 ms
52,864 KB
testcase_03 AC 37 ms
52,736 KB
testcase_04 AC 38 ms
52,864 KB
testcase_05 AC 38 ms
52,864 KB
testcase_06 AC 37 ms
52,864 KB
testcase_07 AC 36 ms
53,120 KB
testcase_08 AC 37 ms
52,864 KB
testcase_09 AC 47 ms
61,184 KB
testcase_10 AC 52 ms
63,104 KB
testcase_11 AC 420 ms
211,712 KB
testcase_12 AC 433 ms
212,864 KB
testcase_13 AC 702 ms
225,152 KB
testcase_14 AC 1,000 ms
220,032 KB
testcase_15 AC 635 ms
212,808 KB
testcase_16 AC 808 ms
213,504 KB
testcase_17 AC 658 ms
224,640 KB
testcase_18 AC 279 ms
97,804 KB
testcase_19 AC 479 ms
162,048 KB
testcase_20 AC 313 ms
108,096 KB
testcase_21 AC 127 ms
77,832 KB
testcase_22 AC 207 ms
84,356 KB
testcase_23 AC 253 ms
85,692 KB
testcase_24 AC 402 ms
141,312 KB
testcase_25 AC 156 ms
80,368 KB
testcase_26 AC 147 ms
78,944 KB
testcase_27 AC 90 ms
76,544 KB
testcase_28 AC 104 ms
76,528 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(N + 2):
            if i == j: continue
            di = -(-D[i][j] // P) - 1
            G[i].append((j, 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