結果

問題 No.2923 Mayor's Job
ユーザー ktsn-udktsn-ud
提出日時 2024-10-12 15:30:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 946 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 69,632 KB
最終ジャッジ日時 2024-10-12 15:30:19
合計ジャッジ時間 2,110 ms
ジャッジサーバーID
(参考情報)
judge / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 91 ms
66,688 KB
testcase_04 AC 58 ms
65,792 KB
testcase_05 AC 87 ms
68,568 KB
testcase_06 AC 84 ms
68,096 KB
testcase_07 AC 88 ms
68,608 KB
testcase_08 AC 89 ms
68,224 KB
testcase_09 AC 87 ms
68,352 KB
testcase_10 AC 103 ms
69,632 KB
testcase_11 AC 59 ms
66,304 KB
testcase_12 AC 61 ms
68,480 KB
testcase_13 AC 58 ms
62,464 KB
testcase_14 AC 40 ms
58,240 KB
testcase_15 AC 36 ms
52,480 KB
testcase_16 AC 35 ms
52,096 KB
testcase_17 AC 35 ms
52,352 KB
testcase_18 AC 41 ms
52,352 KB
testcase_19 AC 36 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin


def main():
    n, k = map(int, stdin.readline().split())
    h = list(map(int, stdin.readline().split()))
    x = [0] * n
    y = [0] * n
    for i in range(n):
        x[i], y[i] = map(int, stdin.readline().split())

    data = [(h[i], x[i], y[i]) for i in range(n)]

    def dist2(i, j):
        ix = data[i][1]
        iy = data[i][2]
        jx = data[j][1]
        jy = data[j][2]
        return (ix-jx) ** 2 + (iy-jy) ** 2

    data.sort(key=lambda x: x[0], reverse=True)
    shrines = [True] * n
    for i in reversed(range(n-1)):
        for j in range(i+1, n):
            if not (shrines[j]):
                continue
            if dist2(i, j) <= k * k:
                if data[i][0] == data[j][0]:
                    continue
                shrines[j] = False

    ans = 0
    for i in range(n):
        if shrines[i]:
            ans += 1

    print(ans)
    return


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