結果

問題 No.2923 Mayor's Job
ユーザー tnakao0123tnakao0123
提出日時 2024-10-13 17:25:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 1,002 bytes
コンパイル時間 604 ms
コンパイル使用メモリ 49,732 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-13 17:25:36
合計ジャッジ時間 1,934 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2923.cc:  No.2923 Mayor's Job - yukicoder
 */

#include<cstdio>
#include<algorithm>
#include<utility>

using namespace std;

/* constant */

const int MAX_N = 2000;

/* typedef */

using ll = long long;
using pii = pair<int,int>;

/* global variables */

int hs[MAX_N], xs[MAX_N], ys[MAX_N];
pii his[MAX_N];

/* subroutines */

ll dist2(int u, int v) {
  int dx = xs[v] - xs[u], dy = ys[v] - ys[u];
  return (ll)dx * dx + (ll)dy * dy;
}

/* main */

int main() {
  int n, k;
  scanf("%d%d", &n, &k);
  for (int i = 0; i < n; i++) scanf("%d", hs + i);
  for (int i = 0; i < n; i++) scanf("%d%d", xs + i, ys + i);

  for (int i = 0; i < n; i++) his[i] = {hs[i], i};
  sort(his, his + n);

  ll kk = (ll)k * k;
  int cnt = 0;
  for (int i = 0; i < n; i++) {
    auto [hu, u] = his[i];
    for (int j = i + 1; j < n; j++) {
      auto [hv, v] = his[j];
      if (hu < hv && dist2(u, v) <= kk) {
	cnt++; break;
      }
    }
  }

  printf("%d\n", n - cnt);

  return 0;
}
0