結果

問題 No.202 1円玉投げ
ユーザー xuzijian629xuzijian629
提出日時 2018-11-05 22:11:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 1,187 bytes
コンパイル時間 1,937 ms
コンパイル使用メモリ 205,892 KB
実行使用メモリ 30,136 KB
最終ジャッジ日時 2024-06-01 21:23:16
合計ジャッジ時間 4,643 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
30,136 KB
testcase_01 AC 79 ms
30,020 KB
testcase_02 AC 11 ms
26,972 KB
testcase_03 AC 10 ms
26,952 KB
testcase_04 AC 11 ms
26,904 KB
testcase_05 AC 12 ms
27,160 KB
testcase_06 AC 63 ms
29,280 KB
testcase_07 AC 71 ms
29,476 KB
testcase_08 AC 71 ms
29,508 KB
testcase_09 AC 47 ms
28,472 KB
testcase_10 AC 23 ms
27,492 KB
testcase_11 AC 36 ms
28,240 KB
testcase_12 AC 38 ms
28,192 KB
testcase_13 AC 25 ms
27,620 KB
testcase_14 AC 16 ms
27,204 KB
testcase_15 AC 44 ms
28,424 KB
testcase_16 AC 69 ms
30,048 KB
testcase_17 AC 68 ms
30,060 KB
testcase_18 AC 69 ms
30,040 KB
testcase_19 AC 39 ms
28,324 KB
testcase_20 AC 57 ms
29,016 KB
testcase_21 AC 39 ms
28,236 KB
testcase_22 AC 10 ms
26,852 KB
testcase_23 AC 9 ms
26,912 KB
testcase_24 AC 10 ms
26,952 KB
testcase_25 AC 10 ms
27,032 KB
testcase_26 AC 10 ms
26,840 KB
testcase_27 AC 10 ms
26,932 KB
testcase_28 AC 10 ms
26,924 KB
testcase_29 AC 10 ms
26,776 KB
testcase_30 AC 12 ms
26,928 KB
testcase_31 AC 10 ms
26,936 KB
testcase_32 AC 10 ms
26,960 KB
testcase_33 AC 11 ms
26,820 KB
testcase_34 AC 9 ms
26,860 KB
testcase_35 AC 65 ms
30,092 KB
testcase_36 AC 71 ms
29,920 KB
testcase_37 AC 71 ms
29,592 KB
testcase_38 AC 69 ms
30,076 KB
testcase_39 AC 11 ms
26,912 KB
testcase_40 AC 9 ms
26,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = int64_t;
using vi = vector<i64>;
using vvi = vector<vi>;

using ii = pair<int, int>;
const int nax = 1001;
vector<ii> b[nax][nax];

bool valid(int i, int j) {
    return 0 <= i && i < nax && 0 <= j && j < nax;
}

int dist2(int x, int y, int xx, int yy) {
    return (x - xx) * (x - xx) + (y - yy) * (y - yy);
}

int main() {
    int n;
    cin >> n;
    for (int i = 0; i < n; i++) {
        int x, y;
        cin >> x >> y;
        int xx = x / 20;
        int yy = y / 20;
        int ok = 1;
        for (int dx = -1; dx <= 1; dx++) {
            for (int dy = -1; dy <= 1; dy++) {
                if (valid(xx + dx, yy + dy)) {
                    for (ii k: b[xx + dx][yy + dy]) {
                        if (dist2(k.first, k.second, x, y) < 400) {
                            ok = 0;
                        }
                    }
                }
            }
        }
        if (ok) {
            b[xx][yy].push_back(ii(x, y));
        }
    }

    int cnt = 0;
    for (int i = 0; i < nax; i++) {
        for (int j = 0; j < nax; j++) {
            cnt += b[i][j].size();
        }
    }
    cout << cnt << endl;
}
0