結果

問題 No.2923 Mayor's Job
ユーザー pengin_2000pengin_2000
提出日時 2024-10-12 16:34:55
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 29,952 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 16:34:57
合計ジャッジ時間 1,040 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 17 ms
5,248 KB
testcase_04 AC 18 ms
5,248 KB
testcase_05 AC 18 ms
5,248 KB
testcase_06 AC 18 ms
5,248 KB
testcase_07 AC 18 ms
5,248 KB
testcase_08 AC 18 ms
5,248 KB
testcase_09 AC 18 ms
5,248 KB
testcase_10 AC 18 ms
5,248 KB
testcase_11 AC 18 ms
5,248 KB
testcase_12 AC 18 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
long long int h[2003], x[2003], y[2003];
long long int dd(long long int i, long long int j)
{
	return (x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j]);
}
int res[2003];
int main()
{
	long long int n, k;
	scanf("%lld %lld", &n, &k);
	long long int i, j;
	for (i = 0; i < n; i++)
		scanf("%lld", &h[i]);
	for (i = 0; i < n; i++)
		scanf("%lld %lld", &x[i], &y[i]);
	k = k * k;
	for (i = 0; i < n; i++)
		res[i] = 1;
	for (i = 0; i < n; i++)
	{
		for (j = 0; j < n; j++)
		{
			if (h[j] < h[i] && dd(i, j) <= k)
				res[j] = 0;
		}
	}
	long long int ans = 0;
	for (i = 0; i < n; i++)
		ans += res[i];
	printf("%lld\n", ans);
	return 0;
}

0