結果

問題 No.202 1円玉投げ
ユーザー tubo28tubo28
提出日時 2015-05-15 02:21:00
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 2,303 bytes
コンパイル時間 1,221 ms
コンパイル使用メモリ 149,936 KB
実行使用メモリ 19,220 KB
最終ジャッジ日時 2023-08-23 22:47:57
合計ジャッジ時間 8,366 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 8 ms
18,004 KB
testcase_03 AC 8 ms
18,076 KB
testcase_04 AC 8 ms
18,100 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 66 ms
19,216 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 9 ms
18,012 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 9 ms
17,996 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 9 ms
18,288 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 AC 8 ms
18,020 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 9 ms
18,244 KB
testcase_40 AC 8 ms
18,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
//#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
//#define int ll
//#define endl "\n"
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<int,int> pii;
#define all(c) (c).begin(), (c).end()
#define loop(i,a,b) for(ll i=a; i<ll(b); i++)
#define rep(i,b) loop(i,0,b)
#define pb push_back
#define eb emplace_back
#define mp make_pair
#define mt make_tuple
template<class T> ostream & operator<<(ostream & os, vector<T> const &);
template<int n, class...T> typename enable_if<(n>=sizeof...(T))>::type _ot(ostream &, tuple<T...> const &){}
template<int n, class...T> typename enable_if<(n< sizeof...(T))>::type _ot(ostream & os, tuple<T...> const & t){ os << (n==0?"":" ") << get<n>(t); _ot<n+1>(os, t); }
template<class...T> ostream & operator<<(ostream & os, tuple<T...> const & t){ _ot<0>(os, t); return os; }
template<class T, class U> ostream & operator<<(ostream & os, pair<T,U> const & p){ return os << "(" << p.first << ", " << p.second << ") "; }
template<class T> ostream & operator<<(ostream & os, vector<T> const & v){ rep(i,v.size()) os << v[i] << (i+1==(int)v.size()?"":" "); return os; }
template<class T> inline bool chmax(T & x, T const & y){ return x<y ? x=y,true : false; }
template<class T> inline bool chmin(T & x, T const & y){ return x>y ? x=y,true : false; }
#ifdef DEBUG
#define dump(...) (cerr<<#__VA_ARGS__<<" = "<<mt(__VA_ARGS__)<<" ["<<__LINE__<<"]"<<endl)
#else
#define dump(...)
#endif
// ll const mod = 1000000007;
// ll const inf = 1LL<<60;

int N;
int const l = 80;
vector<pair<int,int>> baq[20010/l][200010/l];

bool check(int x, int y){
    int bx = x/l, by = y/l;
    for(int i=by-1;i<=by+1;i++){
        for(int j=bx-1;j<=bx+1;j++){
            for(auto & p : baq[i][j]){
                int cx, cy;
                tie(cx,cy) = p;
                int dx = x-cx, dy = y-cy;
                int d2 = dx*dx + dy*dy;
                if(d2 < 400) return false;
            }
        }
    }
    return true;
}

int main(){
    cin >> N;
    int ans = 0;
    rep(i,N){
        int x,y;
        cin >> x >> y;
        x += l*2;
        y += l*2;
        if(!check(x,y)) continue;
        baq[y/l][x/l].eb(x,y);
        ans++;
    }
    cout << ans << endl;
}
0