結果
問題 | No.202 1円玉投げ |
ユーザー | tubo28 |
提出日時 | 2015-05-15 02:29:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 224 ms / 5,000 ms |
コード長 | 2,300 bytes |
コンパイル時間 | 1,248 ms |
コンパイル使用メモリ | 163,844 KB |
実行使用メモリ | 380,924 KB |
最終ジャッジ日時 | 2024-12-22 09:06:30 |
合計ジャッジ時間 | 10,329 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 222 ms
379,788 KB |
testcase_01 | AC | 220 ms
380,924 KB |
testcase_02 | AC | 150 ms
378,456 KB |
testcase_03 | AC | 151 ms
378,452 KB |
testcase_04 | AC | 152 ms
378,324 KB |
testcase_05 | AC | 154 ms
378,532 KB |
testcase_06 | AC | 212 ms
380,292 KB |
testcase_07 | AC | 220 ms
380,484 KB |
testcase_08 | AC | 221 ms
380,484 KB |
testcase_09 | AC | 185 ms
379,856 KB |
testcase_10 | AC | 159 ms
378,972 KB |
testcase_11 | AC | 177 ms
379,476 KB |
testcase_12 | AC | 179 ms
379,492 KB |
testcase_13 | AC | 162 ms
379,188 KB |
testcase_14 | AC | 147 ms
378,512 KB |
testcase_15 | AC | 185 ms
379,720 KB |
testcase_16 | AC | 211 ms
379,920 KB |
testcase_17 | AC | 208 ms
379,916 KB |
testcase_18 | AC | 209 ms
380,052 KB |
testcase_19 | AC | 186 ms
379,692 KB |
testcase_20 | AC | 205 ms
380,100 KB |
testcase_21 | AC | 190 ms
379,616 KB |
testcase_22 | AC | 157 ms
378,292 KB |
testcase_23 | AC | 148 ms
378,444 KB |
testcase_24 | AC | 148 ms
378,448 KB |
testcase_25 | AC | 147 ms
378,360 KB |
testcase_26 | AC | 154 ms
378,352 KB |
testcase_27 | AC | 147 ms
378,396 KB |
testcase_28 | AC | 151 ms
378,240 KB |
testcase_29 | AC | 146 ms
378,296 KB |
testcase_30 | AC | 150 ms
378,220 KB |
testcase_31 | AC | 147 ms
378,392 KB |
testcase_32 | AC | 146 ms
378,344 KB |
testcase_33 | AC | 145 ms
378,424 KB |
testcase_34 | AC | 145 ms
378,308 KB |
testcase_35 | AC | 208 ms
379,748 KB |
testcase_36 | AC | 214 ms
379,840 KB |
testcase_37 | AC | 224 ms
380,564 KB |
testcase_38 | AC | 213 ms
379,720 KB |
testcase_39 | AC | 145 ms
378,312 KB |
testcase_40 | AC | 145 ms
378,388 KB |
ソースコード
#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 = 50; vector<pair<int,int>> baq[200010/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; y += l; if(!check(x,y)) continue; baq[y/l][x/l].eb(x,y); ans++; } cout << ans << endl; }