結果

問題 No.1265 Balloon Survival
ユーザー ktr216ktr216
提出日時 2020-10-23 22:54:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 854 bytes
コンパイル時間 1,924 ms
コンパイル使用メモリ 179,476 KB
実行使用メモリ 30,692 KB
最終ジャッジ日時 2024-07-21 12:04:29
合計ジャッジ時間 6,007 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 18 ms
6,612 KB
testcase_15 AC 13 ms
5,972 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 96 ms
23,752 KB
testcase_18 AC 8 ms
5,376 KB
testcase_19 AC 6 ms
5,376 KB
testcase_20 AC 17 ms
6,484 KB
testcase_21 AC 37 ms
10,328 KB
testcase_22 AC 24 ms
8,404 KB
testcase_23 AC 26 ms
8,404 KB
testcase_24 AC 223 ms
30,560 KB
testcase_25 AC 227 ms
30,540 KB
testcase_26 AC 219 ms
30,540 KB
testcase_27 AC 220 ms
30,560 KB
testcase_28 AC 222 ms
30,564 KB
testcase_29 AC 229 ms
30,556 KB
testcase_30 AC 209 ms
30,560 KB
testcase_31 AC 226 ms
30,556 KB
testcase_32 AC 228 ms
30,692 KB
testcase_33 AC 228 ms
30,488 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;

int main() {
    ll N;
    cin >> N;
    vector<ll> x(N), y(N);
    rep(i, N) cin >> x[i] >> y[i];
    vector<vector<ll>> d;
    for (ll i = 0; i < N - 1; i++) {
        for (ll j = i + 1; j < N; j++) {
            d.push_back({(x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j]), i, j});
        }
    }
    sort(d.begin(), d.end());
    vector<bool> done(N, false);
    ll ans = 0;
    rep(i, d.size()) {
        if (done[d[i][1]] || done[d[i][2]]) continue;
        //cout << d[i][1] << " " << d[i][2] << "\n";
        if (d[i][1] == 0) {
            done[d[i][2]] = true;
            ans++;
        } else {
            done[d[i][1]] = true;
            done[d[i][2]] = true;
        }
    }
    cout << ans << "\n";
}
0