結果

問題 No.202 1円玉投げ
ユーザー koyoprokoyopro
提出日時 2015-10-11 13:08:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 106 ms / 5,000 ms
コード長 1,049 bytes
コンパイル時間 1,624 ms
コンパイル使用メモリ 164,816 KB
実行使用メモリ 36,052 KB
最終ジャッジ日時 2024-12-22 10:00:27
合計ジャッジ時間 5,000 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
35,920 KB
testcase_01 AC 100 ms
36,048 KB
testcase_02 AC 14 ms
32,260 KB
testcase_03 AC 14 ms
32,256 KB
testcase_04 AC 13 ms
32,256 KB
testcase_05 AC 19 ms
32,512 KB
testcase_06 AC 89 ms
35,088 KB
testcase_07 AC 96 ms
35,344 KB
testcase_08 AC 100 ms
35,468 KB
testcase_09 AC 61 ms
33,952 KB
testcase_10 AC 33 ms
33,024 KB
testcase_11 AC 52 ms
33,700 KB
testcase_12 AC 53 ms
33,692 KB
testcase_13 AC 37 ms
33,064 KB
testcase_14 AC 20 ms
32,384 KB
testcase_15 AC 58 ms
33,952 KB
testcase_16 AC 84 ms
35,916 KB
testcase_17 AC 82 ms
36,044 KB
testcase_18 AC 82 ms
36,048 KB
testcase_19 AC 55 ms
33,952 KB
testcase_20 AC 81 ms
34,976 KB
testcase_21 AC 58 ms
33,692 KB
testcase_22 AC 15 ms
32,256 KB
testcase_23 AC 14 ms
32,128 KB
testcase_24 AC 15 ms
32,384 KB
testcase_25 AC 14 ms
32,384 KB
testcase_26 AC 14 ms
32,256 KB
testcase_27 AC 14 ms
32,256 KB
testcase_28 AC 14 ms
32,140 KB
testcase_29 AC 15 ms
32,256 KB
testcase_30 AC 15 ms
32,256 KB
testcase_31 AC 14 ms
32,220 KB
testcase_32 AC 15 ms
32,352 KB
testcase_33 AC 14 ms
32,256 KB
testcase_34 AC 15 ms
32,256 KB
testcase_35 AC 81 ms
36,044 KB
testcase_36 AC 90 ms
36,052 KB
testcase_37 AC 106 ms
35,476 KB
testcase_38 AC 87 ms
36,048 KB
testcase_39 AC 14 ms
32,256 KB
testcase_40 AC 14 ms
32,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define REP(i, n) for(int i=0; i<(n); i++)
struct P { int x, y; P(){}; P(int _x, int _y): x(_x), y(_y){}; };

int N,T;
vector<int> M[1111][1111];
vector<P> ps;
int distance2(P a, P b) {
    return pow(a.x - b.x, 2) + pow(a.y - b.y, 2);
}
signed main()
{
    cin >> N;
    int ans = 0;
    int x,y;
    REP(i,N) {
        cin >> x >> y;
        ps.push_back(P(x, y));
        int mx = ps[i].x / 20;
        int my = ps[i].y / 20;
        int dxy9[] = {-1, 0, 1};
        bool ok = true;
        REP(k,9) {
            int nx = mx + dxy9[k/3];
            int ny = my + dxy9[k%3];
            if (nx<0||ny<0) continue;
            for (auto&& j : M[nx][ny]) {
                if (distance2(ps[j], ps[i]) < 400) {
                    // conflict
                    ok = false;
                    break;
                }
            }
            if (!ok) break;
        }
        if (ok) {
            M[mx][my].push_back(i);
            ans++;
        }
    }
    cout << ans << endl;
    return 0;
}
0