結果

問題 No.2354 Poor Sight in Winter
ユーザー yabityabit
提出日時 2023-07-05 15:16:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 954 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 264,508 KB
最終ジャッジ日時 2024-07-19 09:26:41
合計ジャッジ時間 9,493 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 40 ms
52,736 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 39 ms
52,608 KB
testcase_09 AC 63 ms
67,712 KB
testcase_10 AC 76 ms
68,736 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 831 ms
144,144 KB
testcase_19 AC 1,675 ms
231,352 KB
testcase_20 AC 1,046 ms
162,464 KB
testcase_21 AC 260 ms
79,544 KB
testcase_22 AC 553 ms
113,936 KB
testcase_23 AC 580 ms
115,184 KB
testcase_24 AC 1,414 ms
206,864 KB
testcase_25 AC 371 ms
98,868 KB
testcase_26 AC 355 ms
91,224 KB
testcase_27 AC 148 ms
77,572 KB
testcase_28 AC 210 ms
78,580 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)

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) - 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 = 0, 2*10**5+10
while ok-ng > 1:
    mid = (ng + ok) // 2
    if solve(mid):
        ok = mid
    else:
        ng = mid
print(ok)
0