結果

問題 No.202 1円玉投げ
ユーザー cormorancormoran
提出日時 2016-10-04 18:56:08
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 400 ms / 5,000 ms
コード長 1,355 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 177,796 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-12-22 10:49:22
合計ジャッジ時間 7,853 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
14,848 KB
testcase_01 AC 400 ms
14,976 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 14 ms
6,816 KB
testcase_06 AC 309 ms
11,904 KB
testcase_07 AC 359 ms
12,928 KB
testcase_08 AC 373 ms
12,928 KB
testcase_09 AC 170 ms
8,832 KB
testcase_10 AC 62 ms
6,816 KB
testcase_11 AC 138 ms
8,064 KB
testcase_12 AC 144 ms
8,192 KB
testcase_13 AC 70 ms
6,816 KB
testcase_14 AC 18 ms
6,820 KB
testcase_15 AC 171 ms
8,832 KB
testcase_16 AC 235 ms
14,848 KB
testcase_17 AC 87 ms
14,848 KB
testcase_18 AC 85 ms
14,848 KB
testcase_19 AC 159 ms
8,320 KB
testcase_20 AC 269 ms
11,136 KB
testcase_21 AC 152 ms
8,448 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 3 ms
6,820 KB
testcase_24 AC 3 ms
6,816 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 3 ms
6,820 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 3 ms
6,816 KB
testcase_33 AC 3 ms
6,820 KB
testcase_34 AC 3 ms
6,816 KB
testcase_35 AC 128 ms
14,976 KB
testcase_36 AC 126 ms
14,848 KB
testcase_37 AC 387 ms
13,568 KB
testcase_38 AC 129 ms
14,976 KB
testcase_39 AC 2 ms
6,816 KB
testcase_40 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using pii = pair<int,int>;
using ll = long long;
#define rep(i, j) for(int i=0; i < (int)(j); i++)
#define repeat(i, j, k) for(int i = (j); i < (int)(k); i++)

class Solver {
  public:
    bool cross(pii a, pii b) {
        return pow(a.first - b.first, 2) + pow(a.second - b.second, 2) < 20 * 20;
    }
    
    bool solve() {
        int N; cin >> N;
        vector<int> X(N), Y(N);
        rep(i, N) cin >> X[i] >> Y[i];

        map<int, map<int, vector<pii>>> G;
        int ans = 0;
        rep(i, N) {
            int x = X[i], y = Y[i];
            int gx = x / 10, gy = y / 10;
            repeat(dgy, -2, 2 + 1) {
                if(G.count(gy + dgy)) {
                    repeat(dgx, -2, 2 + 1) {
                        if(G[gy + dgy].count(gx + dgx)) {
                            for(pii p : G[gy +  dgy][gx + dgx]) {
                                if(cross(p, make_pair(y, x))) goto FAIL;
                            }
                        }                        
                    }
                }
            }
            G[gy][gx].push_back(make_pair(y, x));
            ans++;
      FAIL:;            
        }
        cout << ans << endl;
        return 0;
    }
};

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    Solver s;
    s.solve();
    return 0;
}
0