結果

問題 No.2923 Mayor's Job
ユーザー はるお味はるお味
提出日時 2024-10-14 09:03:15
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 817 bytes
コンパイル時間 3,281 ms
コンパイル使用メモリ 258,144 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-14 09:03:19
合計ジャッジ時間 4,279 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<long long> VL;
typedef vector<VL> VVL;
typedef long long LL;
#define all(a) (a).begin(), (a).end()
#define Yes(n) cout << ((n) ? "Yes" : "No"  ) << endl
#define ALL(a)  (a).begin(),(a).end()
#define pb push_back

int n,kk; LL k;

LL dd(LL a,LL b){
  //cout<<k<<' '<<a*a+b*b<<endl;
  return a*a+b*b;
}


int main() {
  cin>>n>>kk;
  k=LL(kk)*kk;
  VVI H(n,VI(3));
  rep(i,n){
    cin>>H[i][0];
  }
  rep(i,n){
    cin>>H[i][1]>>H[i][2];
  }
  
  sort(all(H));
  bool K[n]={};
  int ans=n;
  rep(i,n){
    rep(j,i){
      if(K[j]==1||H[j][0]==H[i][0]){continue;}
      if(dd(H[i][1]-H[j][1],H[i][2]-H[j][2])<=k){K[j]=1;ans--;}
    }
  }
  cout<<ans<<endl;
}
0