結果

問題 No.2354 Poor Sight in Winter
ユーザー lloyzlloyz
提出日時 2023-06-17 20:23:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,259 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 79,076 KB
最終ジャッジ日時 2024-06-25 10:17:35
合計ジャッジ時間 2,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,528 KB
testcase_01 AC 45 ms
54,272 KB
testcase_02 AC 41 ms
54,144 KB
testcase_03 AC 41 ms
54,528 KB
testcase_04 AC 41 ms
54,400 KB
testcase_05 AC 41 ms
54,400 KB
testcase_06 AC 40 ms
54,528 KB
testcase_07 AC 40 ms
54,272 KB
testcase_08 AC 40 ms
54,752 KB
testcase_09 WA -
testcase_10 AC 41 ms
54,272 KB
testcase_11 AC 67 ms
70,912 KB
testcase_12 AC 99 ms
78,848 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 79 ms
72,320 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 58 ms
66,560 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 65 ms
67,712 KB
testcase_26 AC 62 ms
66,944 KB
testcase_27 AC 49 ms
61,568 KB
testcase_28 AC 61 ms
67,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
from collections import deque

n, k = map(int, input().split())
sx, sy, gx, gy = map(int, input().split())
P = [list(map(int, input().split())) for _ in range(n)]
P = [[sx, sy]] + P + [[gx, gy]]
D = [[0 for _ in range(n + 2)] for _ in range(n + 2)]
for i in range(n + 2):
    for j in range(n + 2):
        D[i][j] = abs(P[i][0] - P[j][0]) + abs(P[i][1] - P[j][1])

INF = 10**18
DD = [INF for _ in range(n + 2)]
DD[0] = 0
H = [(0, 0)]
while H:
    cd, cp = heappop(H)
    if cp == n + 1:
        break
    if cd > DD[cp]:
        continue
    for np in range(n + 2):
        if cd + D[cp][np] >= DD[np]:
            continue
        DD[np] = cd + D[cp][np]
        heappush(H, (DD[np], np))

R = []
cp = n + 1
while cp != 0:
    np = None
    res = INF
    for i in range(n + 2):
        if i == cp:
            continue
        if DD[i] + D[i][cp] == DD[cp]:
            if D[i][cp] < res:
                res = D[i][cp]
                np = i
    R.append(res)
    cp = np

m = len(R)
l, r = 0, abs(gx - sx) + abs(gy - sy)
while r - l > 1:
    mid = (l + r) // 2
    cnt = 0
    for i in range(m):
        d = R[i]
        cnt += (d - 1) // mid
    if cnt > k:
        l = mid
    else:
        r = mid
print(r)
0