結果

問題 No.2923 Mayor's Job
ユーザー AyunaAyuna
提出日時 2024-10-19 15:27:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 843 bytes
コンパイル時間 1,272 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-19 15:27:12
合計ジャッジ時間 2,659 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;
using ll = long long;

ll d2(ll x1, ll y1, ll x2, ll y2){
  return (x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1);
}

int main(){
  int n;
  ll k;
  cin >> n >> k;
  vector<ll> h(n);
  for (ll &i: h) cin >> i;
  vector<ll> x(n), y(n);
  for (int i = 0; i < n; i++){
    cin >> x[i] >> y[i];
  }
  vector<int> ind(n);
  for (int i = 0; i < n; i++) ind[i] = i;
  sort(ind.begin(), ind.end(), [&](int a, int b) {
    return h[a] < h[b];
  });
  int ans = 0;
  for (int i = 0; i < n; i++){
    int a = ind[i];
    bool ok = true;
    for (int j = i + 1; j < n; j++){
      int b = ind[j];
      if (h[a] == h[b]) continue;
      if (d2(x[a], y[a], x[b], y[b]) <= k * k){
        ok = false;
        break;
      }
    }
    if (ok) ans++;
  }
  cout << ans << endl;
}
0