結果

問題 No.2923 Mayor's Job
ユーザー るこーそーるこーそー
提出日時 2024-10-14 00:18:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 122,880 KB
最終ジャッジ日時 2024-10-14 00:18:48
合計ジャッジ時間 4,181 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 235 ms
77,228 KB
testcase_04 AC 300 ms
122,880 KB
testcase_05 AC 248 ms
77,184 KB
testcase_06 AC 256 ms
77,636 KB
testcase_07 AC 239 ms
77,368 KB
testcase_08 AC 247 ms
77,696 KB
testcase_09 AC 241 ms
77,512 KB
testcase_10 AC 238 ms
77,056 KB
testcase_11 AC 338 ms
108,456 KB
testcase_12 AC 253 ms
86,400 KB
testcase_13 AC 96 ms
77,756 KB
testcase_14 AC 59 ms
64,000 KB
testcase_15 AC 40 ms
52,608 KB
testcase_16 AC 39 ms
52,480 KB
testcase_17 AC 40 ms
52,480 KB
testcase_18 AC 40 ms
52,480 KB
testcase_19 AC 40 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dist(X,Y):
    return ((X[0]-Y[0])**2+(X[1]-Y[1])**2)**0.5

n,k=map(int,input().split())
H=list(map(int,input().split()))
xy=[list(map(int,input().split())) for _ in range(n)]

graph=[[] for _ in range(n)]
for i in range(n):
    for j in range(n):
        if H[i]<H[j] and dist(xy[i],xy[j])<=k:
            graph[j].append(i)

used=[False]*n
for i,h in sorted(enumerate(H),key=lambda x:x[1]):
    for ni in graph[i]:
        used[ni]=True

print(n-sum(used))
0