結果

問題 No.2923 Mayor's Job
ユーザー ThetaTheta
提出日時 2024-11-20 14:49:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,172 KB
最終ジャッジ日時 2024-11-20 14:49:28
合計ジャッジ時間 2,506 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 103 ms
76,672 KB
testcase_04 AC 84 ms
77,056 KB
testcase_05 AC 87 ms
77,172 KB
testcase_06 AC 90 ms
76,928 KB
testcase_07 AC 83 ms
76,928 KB
testcase_08 AC 84 ms
77,048 KB
testcase_09 AC 91 ms
77,056 KB
testcase_10 AC 86 ms
76,672 KB
testcase_11 AC 91 ms
76,928 KB
testcase_12 AC 84 ms
77,056 KB
testcase_13 AC 54 ms
65,664 KB
testcase_14 AC 44 ms
59,892 KB
testcase_15 AC 37 ms
52,096 KB
testcase_16 AC 39 ms
52,864 KB
testcase_17 AC 36 ms
52,480 KB
testcase_18 AC 37 ms
52,608 KB
testcase_19 AC 35 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
from math import sqrt


def calc_distance_2d(coord1: tuple[int, int], coord2: tuple[int, int]) -> float:
    return sqrt((coord1[0]-coord2[0])**2 + (coord1[1]-coord2[1])**2)


def main():
    N, K = map(int, input().split())
    H = list(map(int, input().split()))
    coords = [tuple(map(int, input().split())) for _ in range(N)]

    shrines = list(zip(H, coords))
    shrines.sort()

    shrines_coord = [coord for _, coord in shrines]
    shrines_year = [hist for hist, _ in shrines]

    ctr = N
    for shrine_hist, shrine_coord in shrines:
        old_idx = bisect_right(shrines_year, shrine_hist)
        for other_coord in shrines_coord[old_idx:]:
            if calc_distance_2d(shrine_coord, other_coord) <= K:
                ctr -= 1
                break
    print(ctr)


if __name__ == "__main__":
    main()
0