結果

問題 No.202 1円玉投げ
ユーザー mayoko_mayoko_
提出日時 2015-05-03 23:48:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 1,402 bytes
コンパイル時間 1,464 ms
コンパイル使用メモリ 162,188 KB
実行使用メモリ 123,800 KB
最終ジャッジ日時 2024-06-01 19:07:23
合計ジャッジ時間 5,644 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
123,760 KB
testcase_01 AC 181 ms
123,696 KB
testcase_02 AC 49 ms
119,112 KB
testcase_03 AC 46 ms
118,976 KB
testcase_04 AC 45 ms
119,084 KB
testcase_05 AC 51 ms
119,388 KB
testcase_06 AC 111 ms
122,608 KB
testcase_07 AC 118 ms
123,068 KB
testcase_08 AC 117 ms
123,152 KB
testcase_09 AC 88 ms
121,372 KB
testcase_10 AC 63 ms
120,096 KB
testcase_11 AC 79 ms
121,012 KB
testcase_12 AC 79 ms
121,016 KB
testcase_13 AC 65 ms
120,116 KB
testcase_14 AC 51 ms
119,420 KB
testcase_15 AC 85 ms
121,144 KB
testcase_16 AC 86 ms
123,800 KB
testcase_17 AC 78 ms
123,768 KB
testcase_18 AC 76 ms
123,780 KB
testcase_19 AC 81 ms
121,212 KB
testcase_20 AC 104 ms
122,160 KB
testcase_21 AC 83 ms
121,028 KB
testcase_22 AC 47 ms
119,168 KB
testcase_23 AC 47 ms
119,168 KB
testcase_24 AC 46 ms
119,064 KB
testcase_25 AC 47 ms
119,100 KB
testcase_26 AC 47 ms
119,072 KB
testcase_27 AC 47 ms
119,084 KB
testcase_28 AC 47 ms
119,064 KB
testcase_29 AC 45 ms
119,064 KB
testcase_30 AC 46 ms
119,124 KB
testcase_31 AC 47 ms
119,032 KB
testcase_32 AC 47 ms
119,160 KB
testcase_33 AC 46 ms
119,088 KB
testcase_34 AC 47 ms
119,232 KB
testcase_35 AC 75 ms
123,756 KB
testcase_36 AC 77 ms
123,724 KB
testcase_37 AC 124 ms
123,320 KB
testcase_38 AC 78 ms
123,648 KB
testcase_39 AC 46 ms
119,100 KB
testcase_40 AC 46 ms
119,092 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