結果

問題 No.1265 Balloon Survival
ユーザー abc3abc3
提出日時 2020-10-24 00:07:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,105 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 210,756 KB
実行使用メモリ 13,068 KB
最終ジャッジ日時 2024-07-21 14:05:31
合計ジャッジ時間 4,511 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 13 ms
6,940 KB
testcase_15 AC 10 ms
6,940 KB
testcase_16 AC 5 ms
6,940 KB
testcase_17 AC 55 ms
11,864 KB
testcase_18 AC 6 ms
6,940 KB
testcase_19 AC 5 ms
6,944 KB
testcase_20 AC 12 ms
6,940 KB
testcase_21 AC 26 ms
6,944 KB
testcase_22 AC 17 ms
6,940 KB
testcase_23 AC 19 ms
6,940 KB
testcase_24 AC 110 ms
11,844 KB
testcase_25 AC 112 ms
12,712 KB
testcase_26 AC 109 ms
12,984 KB
testcase_27 AC 110 ms
12,004 KB
testcase_28 AC 114 ms
13,068 KB
testcase_29 AC 111 ms
11,812 KB
testcase_30 AC 111 ms
12,260 KB
testcase_31 AC 112 ms
11,744 KB
testcase_32 AC 110 ms
12,252 KB
testcase_33 AC 112 ms
12,608 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <math.h>
#include <iomanip>
#include <cstdint>
#define rep(i,n) for (int i = 0; i < (n); ++i)
using ll = long long;
using P = pair<int,int>;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

const int INF=1001001001;
const int mod=1000000007;

int main() {
  int N;
  cin>>N;
  vector<int>x(N),y(N);
  for(int i=0;i<N;i++){
    cin>>x[i]>>y[i];
  }
  priority_queue<pair<int64_t,pair<int,int>>>q;
  for(int i=0;i<N;i++){
    for(int j=i+1;j<N;j++){
      int64_t dx=x[j]-x[i],dy=y[j]-y[i];
      int64_t dis=dx*dx+dy*dy;
      q.push(make_pair(-dis,make_pair(i,j)));
    }
  }
  vector<bool>seen(N,false);
  int cnt=0;
  while(!q.empty()){
    int d=q.top().first,i=q.top().second.first,j=q.top().second.second;
    q.pop();
    if(i==0||j==0){
      if(!seen[i+j-0]){cnt++;seen[i+j-0]=true;}//i+j-0=0の相方
    }
    else if(!seen[i]&&!seen[j]){seen[i]=true;seen[j]=true;}
  }
  cout<<cnt<<endl;
  return 0;
}
0