結果

問題 No.1265 Balloon Survival
ユーザー oevloevl
提出日時 2020-10-27 02:37:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 984 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 214,208 KB
実行使用メモリ 13,592 KB
最終ジャッジ日時 2024-07-21 21:49:07
合計ジャッジ時間 4,453 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 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
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 12 ms
6,940 KB
testcase_15 AC 10 ms
6,940 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 AC 56 ms
11,976 KB
testcase_18 AC 6 ms
6,940 KB
testcase_19 AC 5 ms
6,940 KB
testcase_20 AC 13 ms
6,944 KB
testcase_21 AC 25 ms
6,940 KB
testcase_22 AC 17 ms
6,944 KB
testcase_23 AC 18 ms
6,944 KB
testcase_24 AC 104 ms
12,556 KB
testcase_25 AC 106 ms
12,664 KB
testcase_26 AC 109 ms
11,744 KB
testcase_27 AC 105 ms
11,700 KB
testcase_28 AC 104 ms
12,888 KB
testcase_29 AC 103 ms
11,740 KB
testcase_30 AC 103 ms
13,152 KB
testcase_31 AC 105 ms
13,592 KB
testcase_32 AC 107 ms
12,620 KB
testcase_33 AC 105 ms
12,544 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;
using P = pair<int, int>;
using T = tuple<long long, int, int>;

int main() {
    int n; cin >> n;
    vector<P> ps(n);
    for(auto &[x, y] : ps) cin >> x >> y;

    auto distance = [&](auto p, auto p2) -> long long {
        auto[x, y] = p;
        auto[x2, y2] = p2;
        long long dx = x - x2;
        long long dy = y - y2;
        return dx * dx + dy * dy;
    };

    priority_queue<T, vector<T>, greater<T>> que;
    for(int i = 0; i < n; ++i) {
        for(int j = i + 1; j < n; ++j) {
            que.emplace(distance(ps[i], ps[j]), i, j);
        }
    }

    int ans = 0;
    vector<bool> burst(n);
    while(!que.empty()) {
        auto[d, i, j] = que.top();
        que.pop();
        if(burst[i] || burst[j]) continue;
        if(i == 0) {
            burst[j] = true;
            ans++;
        } else {
            burst[i] = true;
            burst[j] = true;
        }
    }
    cout << ans << '\n';
    return 0;
}
0