結果

問題 No.2923 Mayor's Job
ユーザー noriaokinoriaoki
提出日時 2024-10-12 15:23:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 77,560 KB
最終ジャッジ日時 2024-10-12 15:23:44
合計ジャッジ時間 2,369 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,520 KB
testcase_01 AC 35 ms
52,280 KB
testcase_02 AC 36 ms
53,076 KB
testcase_03 AC 169 ms
77,560 KB
testcase_04 AC 72 ms
74,320 KB
testcase_05 AC 87 ms
76,716 KB
testcase_06 AC 112 ms
76,772 KB
testcase_07 AC 81 ms
76,848 KB
testcase_08 AC 81 ms
76,624 KB
testcase_09 AC 93 ms
76,784 KB
testcase_10 AC 84 ms
76,972 KB
testcase_11 AC 74 ms
74,868 KB
testcase_12 AC 83 ms
76,928 KB
testcase_13 AC 49 ms
62,676 KB
testcase_14 AC 40 ms
53,740 KB
testcase_15 AC 36 ms
52,728 KB
testcase_16 AC 38 ms
52,744 KB
testcase_17 AC 38 ms
52,640 KB
testcase_18 AC 38 ms
53,016 KB
testcase_19 AC 37 ms
52,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
h = list(map(int, input().split()))
xy = [tuple(map(int, input().split())) for _ in range(n)]
k *= k
h = [(h[i], i) for i in range(n)]
h.sort(key=lambda x: x[0])

remain = set()
wait = set()
now = 0
for i in range(n):
    xi, yi = xy[h[i][1]]
    if h[i][0] > now:
        remain |= wait
        wait.clear()
        now = h[i][0]
    wait.add(h[i][1])
    tmp = set()
    for j in list(remain):
        xj, yj = xy[j]
        if (xi - xj)**2 + (yi - yj)**2 <= k:
            pass
        else:
            tmp.add(j)
    remain = tmp

remain |= wait
print(len(remain))
0