結果

問題 No.1265 Balloon Survival
ユーザー 👑 NachiaNachia
提出日時 2021-02-21 11:35:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 1,911 ms
コンパイル使用メモリ 207,912 KB
実行使用メモリ 15,848 KB
最終ジャッジ日時 2024-09-19 09:02:25
合計ジャッジ時間 4,408 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 13 ms
5,376 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 60 ms
15,720 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 12 ms
5,376 KB
testcase_21 AC 26 ms
6,492 KB
testcase_22 AC 17 ms
6,476 KB
testcase_23 AC 18 ms
6,624 KB
testcase_24 AC 112 ms
15,784 KB
testcase_25 AC 113 ms
15,716 KB
testcase_26 AC 112 ms
15,720 KB
testcase_27 AC 111 ms
15,716 KB
testcase_28 AC 116 ms
15,840 KB
testcase_29 AC 110 ms
15,844 KB
testcase_30 AC 113 ms
15,716 KB
testcase_31 AC 117 ms
15,720 KB
testcase_32 AC 114 ms
15,712 KB
testcase_33 AC 111 ms
15,848 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using LL=long long;
#define rep(i,n) for(int i=0; i<(n); i++)

struct Pos{ LL x,y; };
bool operator<(Pos l,Pos r){ return false; }

int N;
Pos P[1000];
int F[1000]={};
priority_queue<pair<LL,Pos>> V;
LL dist(int a,int b){
  LL dx=P[a].x-P[b].x;
  LL dy=P[a].y-P[b].y;
  return -dx*dx-dy*dy;
}

int main(){
  cin>>N;
  rep(i,N) cin>>P[i].x>>P[i].y;
  rep(i,N) rep(j,i) V.push({dist(i,j),{i,j}});
  int ans=0;
  while(V.size()){
    Pos p=V.top().second; V.pop();
    if(F[p.x]+F[p.y]) continue;
    if(p.x*p.y==0){ F[p.x+p.y]=1; ans++; continue; }
    F[p.x]=F[p.y]=1;
  }
  cout<<ans<<endl;
  return 0;
}
0