結果

問題 No.1265 Balloon Survival
ユーザー yansi819yansi819
提出日時 2024-05-04 10:19:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 831 bytes
コンパイル時間 4,102 ms
コンパイル使用メモリ 271,796 KB
実行使用メモリ 13,900 KB
最終ジャッジ日時 2024-05-04 10:19:37
合計ジャッジ時間 6,061 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,948 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 WA -
testcase_15 AC 6 ms
6,944 KB
testcase_16 WA -
testcase_17 AC 35 ms
11,676 KB
testcase_18 WA -
testcase_19 AC 4 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 12 ms
5,584 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using mint = modint998244353;

int main() {
  int N; cin >> N;
  vector<int> x(N), y(N);
  for (int i = 0; i < N; i++) cin >> x[i] >> y[i];
  vector<tuple<ll, int, int>> v;
  for (int i = 0; i < N; i++) {
    for (int j = i + 1; j < N; j++) {
      ll d = (x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j]);
      v.push_back({d, i, j});
    }
  }
  sort(v.begin(), v.end());
  int cnt = 0;
  vector<bool> used(N, false);
  for (auto [d, i, j]: v) {
    if (used[i] or used[j]) continue;
    if (i == 0) {
      used[j] = true, cnt++;
    } else if (j == 0) {
      used[i] = true, cnt++;
    } else {
      used[i] = used[j] = true;
    }
  }
  cout << cnt << endl;
  return 0;
}
0