結果

問題 No.1265 Balloon Survival
ユーザー chocono2230chocono2230
提出日時 2020-10-23 22:25:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 598 ms / 2,000 ms
コード長 1,374 bytes
コンパイル時間 2,557 ms
コンパイル使用メモリ 214,036 KB
実行使用メモリ 34,816 KB
最終ジャッジ日時 2024-07-21 11:07:08
合計ジャッジ時間 10,475 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 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,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 30 ms
7,168 KB
testcase_15 AC 22 ms
6,940 KB
testcase_16 AC 8 ms
6,940 KB
testcase_17 AC 267 ms
20,096 KB
testcase_18 AC 11 ms
6,944 KB
testcase_19 AC 9 ms
6,940 KB
testcase_20 AC 30 ms
7,296 KB
testcase_21 AC 93 ms
11,648 KB
testcase_22 AC 46 ms
8,576 KB
testcase_23 AC 51 ms
9,088 KB
testcase_24 AC 552 ms
34,688 KB
testcase_25 AC 564 ms
34,816 KB
testcase_26 AC 566 ms
34,816 KB
testcase_27 AC 573 ms
34,816 KB
testcase_28 AC 565 ms
34,560 KB
testcase_29 AC 587 ms
34,688 KB
testcase_30 AC 598 ms
34,816 KB
testcase_31 AC 579 ms
34,816 KB
testcase_32 AC 580 ms
34,688 KB
testcase_33 AC 585 ms
34,688 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(ri,n) for(int ri = (int)(n-1); ri >= 0; ri--)
#define rep2(i,x,n) for(int i = (int)(x); i < (int)(n); i++)
#define rrep2(ri,x,n) for(int ri = (int)(n-1); ri >= (int)(x); ri--)
#define repit(itr,x) for(auto itr = x.begin(); itr != x.end(); itr++)
#define rrepit(ritr,x) for(auto ritr = x.rbegin(); ritr != x.rend(); ritr++)
#define ALL(x) x.begin(), x.end()
using ll = long long;
using namespace std;

int main(){
  int n;
  cin >> n;
  pair<int, int> ms;
  int a, b;
  cin >> a >> b;
  ms = {a, b};
  vector<pair<int, int>> ab(n-1);
  rep(i, n-1){
    int a, b;
    cin >> a >> b;
    ab.at(i) = {a, b};
  }
  int ans = 0;
  vector<bool> chk(n-1, false);
  vector<double> dv(n-1);
  set<pair<double, pair<int, int>>> se;
  rep(i, n-1){
    auto [a, b] = ab.at(i);
    double d = hypot(ms.first - a, ms.second - b);
    dv.at(i) = d;
    rep2(j, i+1, n-1){
      auto [a2, b2] = ab.at(j);
      double dis = hypot(a - a2, b - b2);
      se.insert({dis, {i, j}});
    }
  }
  for(auto pp : se){
    auto [dis, ij] = pp;
    auto [i, j] = ij;
    if(chk.at(i) == true || chk.at(j) == true) continue;
    if(dv.at(i) < dis || dv.at(j) < dis) continue;
    chk.at(i) = true;
    chk.at(j) = true;
  }
  rep(i, n-1){
    if(chk.at(i) == false) ans++;
  }
  cout << ans << endl;
  return 0;
}
0