結果

問題 No.2354 Poor Sight in Winter
ユーザー shogo314shogo314
提出日時 2023-06-17 10:49:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 859 bytes
コンパイル時間 941 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 80,676 KB
最終ジャッジ日時 2024-06-25 02:29:18
合計ジャッジ時間 8,754 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,736 KB
testcase_01 AC 39 ms
52,864 KB
testcase_02 AC 40 ms
53,120 KB
testcase_03 AC 40 ms
53,120 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 41 ms
52,736 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 40 ms
52,864 KB
testcase_09 AC 48 ms
60,928 KB
testcase_10 AC 48 ms
60,544 KB
testcase_11 AC 324 ms
78,640 KB
testcase_12 AC 403 ms
79,676 KB
testcase_13 AC 552 ms
80,100 KB
testcase_14 AC 562 ms
80,528 KB
testcase_15 AC 567 ms
80,676 KB
testcase_16 AC 521 ms
80,356 KB
testcase_17 AC 558 ms
80,656 KB
testcase_18 AC 337 ms
78,984 KB
testcase_19 AC 467 ms
80,232 KB
testcase_20 AC 354 ms
79,384 KB
testcase_21 AC 176 ms
78,504 KB
testcase_22 AC 295 ms
79,724 KB
testcase_23 AC 288 ms
79,428 KB
testcase_24 AC 427 ms
79,936 KB
testcase_25 AC 227 ms
78,532 KB
testcase_26 AC 241 ms
78,548 KB
testcase_27 AC 107 ms
76,536 KB
testcase_28 AC 163 ms
77,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N, K = map(int, input().split())
sx, sy, gx, gy = map(int, input().split())
xy = [(sx, sy), (gx, gy)]+[tuple(map(int, input().split())) for i in range(N)]
N += 2
ans_min = 0
ans_max = 2*10**5


def dis(i, j):
    return abs(xy[i][0]-xy[j][0])+abs(xy[i][1]-xy[j][1])


while ans_max-ans_min > 1:
    ans_mid = (ans_max+ans_min)//2
    inf = -1
    f = [False for i in range(N)]
    tbl = [2*10**5 for i in range(N)]
    hq = [(0, 0)]
    while hq:
        c, u = heapq.heappop(hq)
        if f[u]:
            continue
        f[u] = True
        for v in range(N):
            if f[v]:
                continue
            d = c+(dis(u, v)-1)//ans_mid
            if d < tbl[v]:
                tbl[v] = d
                heapq.heappush(hq, (d, v))
    if tbl[1] <= K:
        ans_max = ans_mid
    else:
        ans_min = ans_mid
print(ans_max)
0