結果

問題 No.202 1円玉投げ
ユーザー maine_honzukimaine_honzuki
提出日時 2020-12-22 00:49:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 984 bytes
コンパイル時間 1,846 ms
コンパイル使用メモリ 204,420 KB
実行使用メモリ 12,528 KB
最終ジャッジ日時 2024-06-01 21:42:15
合計ジャッジ時間 4,261 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
10,696 KB
testcase_01 AC 66 ms
12,528 KB
testcase_02 AC 3 ms
9,560 KB
testcase_03 AC 4 ms
9,604 KB
testcase_04 AC 3 ms
9,532 KB
testcase_05 AC 7 ms
9,716 KB
testcase_06 AC 54 ms
11,740 KB
testcase_07 AC 62 ms
11,728 KB
testcase_08 AC 64 ms
11,960 KB
testcase_09 AC 36 ms
10,840 KB
testcase_10 AC 16 ms
10,152 KB
testcase_11 AC 30 ms
10,604 KB
testcase_12 AC 32 ms
10,796 KB
testcase_13 AC 18 ms
10,220 KB
testcase_14 AC 8 ms
9,800 KB
testcase_15 AC 35 ms
10,888 KB
testcase_16 AC 55 ms
10,860 KB
testcase_17 AC 56 ms
10,780 KB
testcase_18 AC 55 ms
10,848 KB
testcase_19 AC 33 ms
10,860 KB
testcase_20 AC 48 ms
11,512 KB
testcase_21 AC 31 ms
10,924 KB
testcase_22 AC 4 ms
9,596 KB
testcase_23 AC 4 ms
9,548 KB
testcase_24 AC 4 ms
9,584 KB
testcase_25 AC 4 ms
9,532 KB
testcase_26 AC 4 ms
9,452 KB
testcase_27 AC 4 ms
9,596 KB
testcase_28 AC 4 ms
9,524 KB
testcase_29 AC 4 ms
9,548 KB
testcase_30 AC 4 ms
9,536 KB
testcase_31 AC 4 ms
9,528 KB
testcase_32 AC 4 ms
9,432 KB
testcase_33 AC 4 ms
9,576 KB
testcase_34 AC 4 ms
9,528 KB
testcase_35 AC 56 ms
10,576 KB
testcase_36 AC 63 ms
10,740 KB
testcase_37 AC 67 ms
12,088 KB
testcase_38 AC 61 ms
10,756 KB
testcase_39 AC 4 ms
9,636 KB
testcase_40 AC 4 ms
9,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

vector<pair<int, int>> mesh[510][510];

int main() {
    auto overlap = [](pair<int, int> P, pair<int, int> Q) {
        int dx = P.first - Q.first, dy = P.second - Q.second;
        return dx * dx + dy * dy < 400;
    };
    auto out = [&](pair<int, int> P) {
        int i = P.first / 40, j = P.second / 40;
        bool flag = false;
        for (int k = max(0, i - 1); k <= i + 1; k++) {
            for (int l = max(0, j - 1); l <= j + 1; l++) {
                for (auto& Q : mesh[k][l]) {
                    flag |= overlap(P, Q);
                }
            }
        }
        return flag;
    };

    int N, ans = 0;
    cin >> N;
    while (N--) {
        pair<int, int> P;
        cin >> P.first >> P.second;
        if (out(P))
            continue;
        else {
            int i = P.first / 40, j = P.second / 40;
            mesh[i][j].emplace_back(P);
            ans++;
        }
    }

    cout << ans << endl;
}
0