結果

問題 No.1265 Balloon Survival
ユーザー roarisroaris
提出日時 2020-11-14 12:56:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 918 bytes
コンパイル時間 2,515 ms
コンパイル使用メモリ 210,456 KB
実行使用メモリ 15,736 KB
最終ジャッジ日時 2024-07-22 22:50:22
合計ジャッジ時間 4,362 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 10 ms
5,376 KB
testcase_15 AC 8 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 42 ms
15,600 KB
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 11 ms
5,376 KB
testcase_21 AC 20 ms
6,512 KB
testcase_22 AC 14 ms
6,504 KB
testcase_23 AC 15 ms
6,504 KB
testcase_24 AC 71 ms
15,732 KB
testcase_25 AC 74 ms
15,604 KB
testcase_26 AC 73 ms
15,736 KB
testcase_27 AC 72 ms
15,644 KB
testcase_28 AC 74 ms
15,728 KB
testcase_29 AC 74 ms
15,604 KB
testcase_30 AC 73 ms
15,580 KB
testcase_31 AC 73 ms
15,736 KB
testcase_32 AC 73 ms
15,604 KB
testcase_33 AC 75 ms
15,736 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i=0; i<n; i++)
#define pb push_back
#define int long long
typedef tuple<int, int, int> T;

bool flag[1010];

signed main() {
    cin.tie(0); ios::sync_with_stdio(false);
    int N; cin >> N;
    int x[N], y[N];
    rep(i, N) cin >> x[i] >> y[i];
    vector<T> l;
    rep(i, N) for (int j=i+1; j<N; j++) {
        l.push_back(make_tuple((x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j]), i, j));
    }
    sort(l.begin(), l.end());
    int ans = 0;
    for (int i=0; i<l.size(); i++) {
        int j = get<1>(l[i]), k = get<2>(l[i]);
        if (flag[j] || flag[k]) continue;
        if (j==0) {
            ans++;
            flag[k] = true;
        }
        else if (k==0) {
            ans++;
            flag[j] = true;
        }
        else {
            flag[j] = true;
            flag[k] = true;
        }
    }
    cout << ans << endl;
}
0