結果

問題 No.1265 Balloon Survival
ユーザー naribownaribow
提出日時 2020-10-23 23:39:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,928 bytes
コンパイル時間 2,648 ms
コンパイル使用メモリ 214,268 KB
実行使用メモリ 11,600 KB
最終ジャッジ日時 2024-07-21 13:37:47
合計ジャッジ時間 4,771 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
6,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
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 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const double pi = 3.141592653589793;
typedef unsigned long long ull;
typedef long double ldouble;
const ll INF = 1e18;
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
#define rep2(i, s, n) for (ll i = (s); i < (ll)(n); i++)
template <class T>
inline bool chmax(T& a, T b) {
    if (a < b) {
        a = b;
        return 1;
    }
    return 0;
}
template <class T>
inline bool chmin(T& a, T b) {
    if (a > b) {
        a = b;
        return 1;
    }
    return 0;
}
typedef pair<int, int> P;
typedef pair<ll, ll> PL;

ll dis (pair<ll, ll> a, pair<ll, ll> b) {
    return (ll)(a.first - b.first) * (ll)(a.first - b.first) + (ll)(a.second - b.second) * (ll)(a.second - b.second);
}

int main() {
    ll n;
    cin >> n;
    vector<P> xy(n);
    rep(i, n) {
        cin >> xy[i].first >> xy[i].second;
    }
    vector<pair<int, pair<int , int> > > kn;
    vector<bool> used(n, false);
    rep2(i, 0, n-1) {
        ll this_dis = INF, ind = -1;
        rep2(j, i+1, n) {
            if(i == j) continue;
            ll dis_y = dis(xy[i], xy[j]);
            pair<int, pair<int, int> > k;
            k.first = floor(sqrtl(dis_y) + 0.999999999);
            k.second.first = i;
            k.second.second = j;
            kn.emplace_back(k);
        }
    }
    sort(kn.begin(), kn.end());
    int ans = 0;
    rep(i, kn.size()) {
        int a = kn[i].second.first;
        int b = kn[i].second.second;
        if(used[a] == false && used[b] == false ) {
            cout << kn[i].first << " a:" << a << " b:" << b << endl;
            if(a == 0) {
                used[b] = true;
                ans++;
            }
            else if(b == 0) {
                used[a] = true;
                ans++;
            }
            else {
                used[a] = true;
                used[b] = true;
            }
        }
    }

    cout << ans << endl;
}
0