結果

問題 No.2923 Mayor's Job
ユーザー ikomaikoma
提出日時 2024-10-12 16:17:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 70,272 KB
最終ジャッジ日時 2024-10-12 16:17:56
合計ジャッジ時間 2,318 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 106 ms
68,352 KB
testcase_04 AC 79 ms
67,968 KB
testcase_05 AC 97 ms
68,864 KB
testcase_06 AC 102 ms
69,700 KB
testcase_07 AC 95 ms
68,736 KB
testcase_08 AC 93 ms
69,248 KB
testcase_09 AC 98 ms
70,272 KB
testcase_10 AC 94 ms
69,888 KB
testcase_11 AC 80 ms
68,352 KB
testcase_12 AC 76 ms
68,736 KB
testcase_13 AC 55 ms
63,744 KB
testcase_14 AC 47 ms
60,416 KB
testcase_15 AC 38 ms
52,480 KB
testcase_16 AC 39 ms
51,840 KB
testcase_17 AC 40 ms
51,968 KB
testcase_18 AC 38 ms
51,840 KB
testcase_19 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
H=list(map(int,input().split()))
XY=[list(map(int,input().split())) for _ in range(N)]
K2=K*K

Exist = [1]*N

Hi = sorted(list(enumerate(H)), key=lambda x:x[1])
for i,h in Hi:
    if Exist[i]==0:continue
    for j in range(N):
        if i==j:continue
        if h<=H[j]:continue
        if Exist[j]==0:continue
        if (XY[i][0]-XY[j][0])**2+(XY[i][1]-XY[j][1])**2 <= K2:
            Exist[j] = 0
print(sum(Exist))
0