結果

問題 No.2354 Poor Sight in Winter
ユーザー yabityabit
提出日時 2023-07-05 14:13:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,000 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 271,840 KB
最終ジャッジ日時 2024-07-19 08:23:11
合計ジャッジ時間 9,651 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,368 KB
testcase_01 AC 44 ms
53,120 KB
testcase_02 AC 43 ms
52,992 KB
testcase_03 WA -
testcase_04 AC 40 ms
52,992 KB
testcase_05 WA -
testcase_06 AC 40 ms
52,992 KB
testcase_07 AC 40 ms
52,608 KB
testcase_08 AC 41 ms
52,736 KB
testcase_09 AC 63 ms
67,072 KB
testcase_10 AC 67 ms
69,376 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

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)

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
            kyori = abs(X[i]-X[j]) + abs(Y[i]-Y[j])
            di = kyori//P
            if kyori % P == 0:
                di -= 1
            G[i].append((j, di))
    dist = [-1]*(N+2)
    que = [(0,0)]
    heapq.heapify(que)
    while que:
        d, v = heapq.heappop(que)
        if dist[v] > -1:
            continue
        dist[v] = d
        for u,e in G[v]:
            if dist[u] > -1:
                continue
            heapq.heappush(que, (d+e, u))
    # print(P, G, dist)
    return dist[1] <= K

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