結果

問題 No.2354 Poor Sight in Winter
ユーザー shogo314shogo314
提出日時 2023-06-17 10:44:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 762 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 195,432 KB
最終ジャッジ日時 2024-06-25 02:25:14
合計ジャッジ時間 30,227 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 43 ms
52,608 KB
testcase_03 AC 43 ms
52,224 KB
testcase_04 AC 42 ms
52,480 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 44 ms
52,480 KB
testcase_07 AC 43 ms
52,480 KB
testcase_08 AC 43 ms
52,480 KB
testcase_09 AC 67 ms
65,536 KB
testcase_10 AC 71 ms
66,688 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 1,063 ms
103,160 KB
testcase_19 AC 1,914 ms
145,032 KB
testcase_20 AC 1,234 ms
109,108 KB
testcase_21 AC 344 ms
79,788 KB
testcase_22 AC 759 ms
91,184 KB
testcase_23 AC 776 ms
90,556 KB
testcase_24 AC 1,679 ms
129,480 KB
testcase_25 AC 536 ms
83,868 KB
testcase_26 AC 525 ms
83,532 KB
testcase_27 AC 175 ms
77,364 KB
testcase_28 AC 264 ms
78,596 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
    tbl = [inf for i in range(N)]
    hq = [(0, 0)]
    while hq:
        c, u = heapq.heappop(hq)
        if tbl[u] != inf:
            continue
        tbl[u] = c
        for v in range(N):
            if tbl[v] != inf:
                continue
            heapq.heappush(hq, (c+(dis(u, v)-1)//ans_mid, v))
    if tbl[1] <= K:
        ans_max = ans_mid
    else:
        ans_min = ans_mid
print(ans_max)
0