結果

問題 No.2923 Mayor's Job
ユーザー loop0919loop0919
提出日時 2024-06-15 17:13:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-09-15 21:16:11
合計ジャッジ時間 2,664 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,504 KB
testcase_01 AC 47 ms
53,120 KB
testcase_02 AC 47 ms
53,632 KB
testcase_03 AC 159 ms
77,312 KB
testcase_04 AC 108 ms
77,440 KB
testcase_05 AC 118 ms
77,184 KB
testcase_06 AC 143 ms
77,568 KB
testcase_07 AC 114 ms
77,312 KB
testcase_08 AC 114 ms
77,056 KB
testcase_09 AC 124 ms
77,184 KB
testcase_10 AC 115 ms
77,568 KB
testcase_11 AC 106 ms
77,568 KB
testcase_12 AC 114 ms
77,440 KB
testcase_13 AC 64 ms
57,984 KB
testcase_14 AC 52 ms
55,168 KB
testcase_15 AC 47 ms
53,376 KB
testcase_16 AC 47 ms
53,632 KB
testcase_17 AC 46 ms
53,248 KB
testcase_18 AC 47 ms
53,760 KB
testcase_19 AC 47 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N, K = map(int, input().split())
H = list(map(int, input().split()))

points = defaultdict(list)
for i in range(N):
	X, Y = map(int, input().split())
	points[H[i]].append((X, Y))

existing = []
for h in sorted(points.keys()):
	reject = set()
	for X, Y in points[h]:
		for i, (x, y) in enumerate(existing):
			if (X - x)**2 + (Y - y)**2 <= K**2:
				reject.add(i)
	
	new_existing = []
	for i, (X, Y) in enumerate(existing):
		if i not in reject:
			new_existing.append((X, Y))
	
	for X, Y in points[h]:
		new_existing.append((X, Y))
	
	existing = new_existing

print(len(existing))

0