結果

問題 No.2354 Poor Sight in Winter
ユーザー shogo314shogo314
提出日時 2023-06-17 10:37:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 851 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 87,980 KB
最終ジャッジ日時 2024-06-25 02:17:46
合計ジャッジ時間 4,816 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,600 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 41 ms
52,532 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 42 ms
52,480 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 41 ms
52,408 KB
testcase_08 AC 40 ms
52,480 KB
testcase_09 AC 63 ms
67,072 KB
testcase_10 AC 72 ms
71,680 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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
    tmp = [[(dis(i, j)-1)//ans_mid if i != j else 0 for j in range(N)]
           for i in range(N)]
    for k in range(N):
        for i in range(N-1):
            if i == k:
                continue
            for j in range(i+1, N):
                if j == k:
                    continue
                tmp[i][j] = min(tmp[i][j], tmp[i][k]+tmp[k][j])
                tmp[j][i] = min(tmp[j][i], tmp[j][k]+tmp[k][i])
    if tmp[0][1] <= K:
        ans_max = ans_mid
    else:
        ans_min = ans_mid
print(ans_max)
0