結果
問題 | No.202 1円玉投げ |
ユーザー | 158b |
提出日時 | 2015-06-11 02:52:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 91 ms / 5,000 ms |
コード長 | 1,362 bytes |
コンパイル時間 | 943 ms |
コンパイル使用メモリ | 84,812 KB |
実行使用メモリ | 6,144 KB |
最終ジャッジ日時 | 2024-12-22 09:31:24 |
合計ジャッジ時間 | 3,687 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 91 ms
5,376 KB |
testcase_01 | AC | 82 ms
6,144 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 7 ms
5,248 KB |
testcase_06 | AC | 70 ms
5,632 KB |
testcase_07 | AC | 77 ms
5,632 KB |
testcase_08 | AC | 81 ms
5,760 KB |
testcase_09 | AC | 44 ms
5,248 KB |
testcase_10 | AC | 19 ms
5,248 KB |
testcase_11 | AC | 37 ms
5,248 KB |
testcase_12 | AC | 36 ms
5,248 KB |
testcase_13 | AC | 20 ms
5,248 KB |
testcase_14 | AC | 8 ms
5,248 KB |
testcase_15 | AC | 41 ms
5,248 KB |
testcase_16 | AC | 77 ms
5,504 KB |
testcase_17 | AC | 77 ms
5,504 KB |
testcase_18 | AC | 78 ms
5,504 KB |
testcase_19 | AC | 40 ms
5,248 KB |
testcase_20 | AC | 62 ms
5,504 KB |
testcase_21 | AC | 40 ms
5,376 KB |
testcase_22 | AC | 3 ms
5,248 KB |
testcase_23 | AC | 3 ms
5,248 KB |
testcase_24 | AC | 4 ms
5,248 KB |
testcase_25 | AC | 3 ms
5,248 KB |
testcase_26 | AC | 4 ms
5,248 KB |
testcase_27 | AC | 3 ms
5,248 KB |
testcase_28 | AC | 4 ms
5,248 KB |
testcase_29 | AC | 3 ms
5,248 KB |
testcase_30 | AC | 3 ms
5,248 KB |
testcase_31 | AC | 4 ms
5,248 KB |
testcase_32 | AC | 3 ms
5,248 KB |
testcase_33 | AC | 4 ms
5,248 KB |
testcase_34 | AC | 5 ms
5,248 KB |
testcase_35 | AC | 83 ms
5,376 KB |
testcase_36 | AC | 87 ms
5,376 KB |
testcase_37 | AC | 82 ms
5,632 KB |
testcase_38 | AC | 86 ms
5,376 KB |
testcase_39 | AC | 3 ms
5,248 KB |
testcase_40 | AC | 3 ms
5,248 KB |
ソースコード
#include <iostream> #include <algorithm> #include <functional> #include <string> #include <climits> #include <vector> #include <numeric> #include <complex> #include <map> #include <bitset> #include <utility> using namespace std; //#define __int64 long long #define long __int64 #define REP(i,a,b) for(int i=a;i<b;i++) #define rep(i,n) REP(i,0,n) const int Vecy[4] = {0,-1,0,1}; const int Vecx[4] = {1,0,-1,0}; const int Xy = 20000; const int Pat = 100; const int Kazu = Xy / Pat; vector<vector<vector<pair<int,int> > > > field; bool check(int testy, int testx){ int fy = min(Kazu - 1, testy / Pat); int fx = min(Kazu - 1, testx / Pat); int kyori; for(int iy=max(0,fy-1); iy<=min(Kazu-1,fy+1); iy++){ for(int ix=max(0,fx-1); ix<=min(Kazu-1, fx+1); ix++){ for(int i=0; i<field[iy][ix].size(); i++){ kyori = pow(testy - field[iy][ix][i].first , 2) + pow(testx - field[iy][ix][i].second , 2) + 0.2; if(kyori < 400){ return false; } } } } //データ追加 field[fy][fx].push_back(make_pair(testy, testx)); return true; } int main(){ int n; int ans = 0; int y,x; //vector field = vector<vector<vector<pair<int,int> > > >(Kazu, vector<vector<pair<int,int> > >(Kazu, vector<pair<int,int> >())); cin >> n; rep(i,n){ cin >> x >> y; if(check(y,x)){ ans ++; } } cout << ans << endl; return 0; }