結果

問題 No.202 1円玉投げ
ユーザー mayoko_mayoko_
提出日時 2015-05-03 23:48:38
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 166 ms / 5,000 ms
コード長 1,402 bytes
コンパイル時間 1,486 ms
コンパイル使用メモリ 164,628 KB
実行使用メモリ 123,808 KB
最終ジャッジ日時 2024-12-22 06:28:46
合計ジャッジ時間 6,017 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
123,776 KB
testcase_01 AC 166 ms
123,664 KB
testcase_02 AC 47 ms
119,040 KB
testcase_03 AC 50 ms
119,040 KB
testcase_04 AC 48 ms
119,040 KB
testcase_05 AC 51 ms
119,424 KB
testcase_06 AC 118 ms
122,624 KB
testcase_07 AC 126 ms
123,008 KB
testcase_08 AC 126 ms
123,008 KB
testcase_09 AC 91 ms
121,216 KB
testcase_10 AC 65 ms
120,064 KB
testcase_11 AC 84 ms
120,960 KB
testcase_12 AC 84 ms
121,088 KB
testcase_13 AC 72 ms
120,192 KB
testcase_14 AC 54 ms
119,296 KB
testcase_15 AC 90 ms
121,472 KB
testcase_16 AC 95 ms
123,776 KB
testcase_17 AC 81 ms
123,752 KB
testcase_18 AC 79 ms
123,776 KB
testcase_19 AC 89 ms
121,172 KB
testcase_20 AC 108 ms
122,368 KB
testcase_21 AC 89 ms
121,136 KB
testcase_22 AC 49 ms
119,168 KB
testcase_23 AC 47 ms
119,156 KB
testcase_24 AC 48 ms
119,168 KB
testcase_25 AC 48 ms
119,040 KB
testcase_26 AC 48 ms
119,168 KB
testcase_27 AC 49 ms
119,168 KB
testcase_28 AC 49 ms
119,040 KB
testcase_29 AC 49 ms
119,040 KB
testcase_30 AC 47 ms
119,040 KB
testcase_31 AC 49 ms
119,040 KB
testcase_32 AC 48 ms
119,040 KB
testcase_33 AC 48 ms
119,168 KB
testcase_34 AC 48 ms
118,948 KB
testcase_35 AC 78 ms
123,808 KB
testcase_36 AC 82 ms
123,776 KB
testcase_37 AC 131 ms
123,360 KB
testcase_38 AC 80 ms
123,776 KB
testcase_39 AC 49 ms
119,040 KB
testcase_40 AC 47 ms
119,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i, n) for (int (i) = 0; (i) < (int)(n); (i)++)

const int dx[] = {1, 0, -1, 0};
const int dy[] = {0, 1, 0, -1};
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef pair<int, int> pii;

const int MAXN = 122222;
ll X[MAXN], Y[MAXN];

vector<pii> pos[2222][2222];

ll square(int x) {return x*x;}

bool in(const pii& p, const pii& q) {
    return square(p.first-q.first) + square(p.second-q.second) < 20*20;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N;
    cin >> N;
    for (int i = 0; i < N; i++) {
        cin >> X[i] >> Y[i];
    }
    int ans = 0;
    for (int i = 0; i < N; i++) {
        int y = Y[i]/10;
        int x = X[i]/10;
        bool ng = false;
        for (int dx = -3; dx <= 3; dx++) {
            for (int dy = -3; dy <= 3; dy++) {
                int nx = x+dx;
                int ny = y+dy;
                if (nx < 0 || ny < 0) continue;
                for (auto p : pos[ny][nx]) {
                    if (in(p, pii(Y[i], X[i]))) {
                        ng = true;
                        break;
                    }
                }
                if (ng) break;
            }
            if (ng) break;
        }
        if (!ng) {
            ans++;
            pos[y][x].push_back(pii(Y[i], X[i]));
        }
    }
    cout << ans << endl;
    return 0;
}
0