結果

問題 No.1265 Balloon Survival
ユーザー firiexpfiriexp
提出日時 2020-10-24 00:00:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 1,129 bytes
コンパイル時間 1,367 ms
コンパイル使用メモリ 113,796 KB
実行使用メモリ 15,840 KB
最終ジャッジ日時 2024-07-21 14:01:52
合計ジャッジ時間 3,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 11 ms
5,376 KB
testcase_15 AC 8 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 40 ms
15,708 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 10 ms
5,376 KB
testcase_21 AC 20 ms
6,612 KB
testcase_22 AC 14 ms
6,484 KB
testcase_23 AC 14 ms
6,612 KB
testcase_24 AC 71 ms
15,712 KB
testcase_25 AC 71 ms
15,796 KB
testcase_26 AC 71 ms
15,712 KB
testcase_27 AC 73 ms
15,708 KB
testcase_28 AC 71 ms
15,712 KB
testcase_29 AC 73 ms
15,712 KB
testcase_30 AC 71 ms
15,712 KB
testcase_31 AC 70 ms
15,840 KB
testcase_32 AC 72 ms
15,648 KB
testcase_33 AC 71 ms
15,712 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using u32 = unsigned;
using u64 = unsigned long long;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max() / 32 * 15 + 208;

int main() {
    int n;
    cin >> n;
    vector<ll> x(n), y(n);
    for (int i = 0; i < n; ++i) {
        cin >> x[i] >> y[i];
    }
    vector<tuple<ll, ll, ll>> v;
    for (int i = 0; i < n; ++i) {
        for (int j = i+1; j < n; ++j) {
            v.emplace_back((x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j]), i, j);
        }
    }
    sort(v.begin(),v.end());
    vector<int> alive(n, 1);
    for (auto [cost, a, b] : v) {
        if(alive[a] != 1 || alive[b] != 1) continue;
        if(a == 0) alive[b] = 0;
        else if(b == 0) alive[a] = 0;
        else {
            alive[a] = alive[b] = -1;
        }
    }
    int ans = 0;
    for (int i = 0; i < n; ++i) {
        if(alive[i] == 0) ans++;
    }
    cout << ans << "\n";
    return 0;
}
0