結果

問題 No.1265 Balloon Survival
ユーザー sten_sansten_san
提出日時 2020-10-29 20:41:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 915 bytes
コンパイル時間 2,263 ms
コンパイル使用メモリ 214,416 KB
実行使用メモリ 17,040 KB
最終ジャッジ日時 2024-07-21 22:38:51
合計ジャッジ時間 4,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 14 ms
6,940 KB
testcase_15 AC 9 ms
6,940 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 62 ms
15,980 KB
testcase_18 AC 7 ms
6,944 KB
testcase_19 AC 6 ms
6,944 KB
testcase_20 AC 14 ms
6,940 KB
testcase_21 AC 28 ms
7,132 KB
testcase_22 AC 17 ms
6,940 KB
testcase_23 AC 19 ms
6,944 KB
testcase_24 AC 120 ms
17,040 KB
testcase_25 AC 119 ms
15,852 KB
testcase_26 AC 118 ms
16,408 KB
testcase_27 AC 121 ms
16,616 KB
testcase_28 AC 124 ms
16,572 KB
testcase_29 AC 123 ms
16,156 KB
testcase_30 AC 116 ms
16,152 KB
testcase_31 AC 115 ms
16,144 KB
testcase_32 AC 121 ms
16,496 KB
testcase_33 AC 117 ms
16,132 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template <typename T> using vec = vector<T>;
template <typename T> using vvec = vector<vector<T>>;

int main() {
    int n; cin >> n;
    vec<array<int, 2>> bal(n);
    for (auto &[x, y]: bal) cin >> x >> y;

    using dist_t = array<int64_t, 3>;
    priority_queue<dist_t, vector<dist_t>, greater<dist_t>> que;
    for (int i = 0; i < n; ++i) {
        for (int j = i + 1; j < n; ++j) {
            int64_t dx = abs(bal[i][0] - bal[j][0]), dy = abs(bal[i][1] - bal[j][1]);
            que.push({ dx * dx + dy * dy , i, j });
        }
    }

    int ans = 0;

    vec<bool> used(n, false);
    while (que.size()) {
        auto [d, a, b] = que.top(); que.pop();
        if (used[a] || used[b]) continue;

        tie(a, b) = make_tuple(min(a, b), max(a, b));
        used[a] = a != 0;
        used[b] = true;

        ans += a == 0;
    }

    cout << ans << endl;
}

0