結果

問題 No.2354 Poor Sight in Winter
ユーザー yabityabit
提出日時 2023-07-05 14:11:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 998 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 272,684 KB
最終ジャッジ日時 2024-07-19 08:21:44
合計ジャッジ時間 24,878 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,992 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 38 ms
53,120 KB
testcase_03 WA -
testcase_04 AC 38 ms
52,608 KB
testcase_05 WA -
testcase_06 AC 39 ms
52,864 KB
testcase_07 AC 36 ms
53,120 KB
testcase_08 AC 33 ms
52,608 KB
testcase_09 AC 54 ms
66,568 KB
testcase_10 AC 55 ms
67,328 KB
testcase_11 TLE -
testcase_12 AC 1,929 ms
262,604 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 808 ms
145,264 KB
testcase_19 AC 1,537 ms
225,372 KB
testcase_20 AC 918 ms
152,224 KB
testcase_21 AC 242 ms
80,016 KB
testcase_22 AC 549 ms
113,628 KB
testcase_23 AC 554 ms
114,600 KB
testcase_24 AC 1,354 ms
198,620 KB
testcase_25 WA -
testcase_26 AC 309 ms
88,124 KB
testcase_27 AC 130 ms
77,504 KB
testcase_28 AC 203 ms
78,588 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
            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, 10**5+1
while ok-ng > 1:
    mid = (ng + ok) // 2
    if solve(mid):
        ok = mid
    else:
        ng = mid
print(ok)
0