結果

問題 No.2923 Mayor's Job
ユーザー timitimi
提出日時 2024-10-12 15:12:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 108,296 KB
最終ジャッジ日時 2024-10-12 15:13:04
合計ジャッジ時間 2,380 ms
ジャッジサーバーID
(参考情報)
judge / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,380 KB
testcase_01 AC 40 ms
55,048 KB
testcase_02 AC 40 ms
55,472 KB
testcase_03 AC 101 ms
108,024 KB
testcase_04 AC 117 ms
108,200 KB
testcase_05 AC 111 ms
107,992 KB
testcase_06 AC 108 ms
108,296 KB
testcase_07 AC 106 ms
108,244 KB
testcase_08 AC 120 ms
108,204 KB
testcase_09 AC 108 ms
108,260 KB
testcase_10 AC 110 ms
107,400 KB
testcase_11 AC 125 ms
105,004 KB
testcase_12 AC 112 ms
90,152 KB
testcase_13 AC 58 ms
71,060 KB
testcase_14 AC 53 ms
64,520 KB
testcase_15 AC 41 ms
54,528 KB
testcase_16 AC 38 ms
54,904 KB
testcase_17 AC 41 ms
54,584 KB
testcase_18 AC 41 ms
54,912 KB
testcase_19 AC 39 ms
55,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq 
from heapq import heappop,heappush,heapify
from sys import stdin, setrecursionlimit
input = stdin.readline
readline = stdin.readline

from collections import deque
d=deque()

#T=int(input())
N,K=map(int,input().split())
H=list(map(int, input().split()))
A=[]
C=[[0]*N for i in range(N)]
for i in range(N):
  x,y=map(int,input().split())
  A.append((x,y))
  
ans=[1]*N 
for i in range(N-1):
  for j in range(i+1,N):
    x,y=A[i];p,q=A[j]
    if (x-p)**2+(y-q)**2<=K**2:
      if H[i]<H[j]:
        ans[i]=0
      elif H[i]>H[j]:
        ans[j]=0
print(sum(ans))
0