結果

問題 No.202 1円玉投げ
ユーザー kaffelunkaffelun
提出日時 2017-10-14 19:37:07
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 828 bytes
コンパイル時間 1,322 ms
コンパイル使用メモリ 162,216 KB
実行使用メモリ 20,324 KB
最終ジャッジ日時 2024-06-01 21:03:18
合計ジャッジ時間 4,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
20,196 KB
testcase_01 AC 70 ms
20,320 KB
testcase_02 AC 6 ms
19,240 KB
testcase_03 AC 6 ms
19,336 KB
testcase_04 AC 6 ms
19,196 KB
testcase_05 AC 9 ms
19,252 KB
testcase_06 AC 57 ms
20,196 KB
testcase_07 AC 66 ms
20,192 KB
testcase_08 AC 65 ms
20,324 KB
testcase_09 AC 40 ms
19,600 KB
testcase_10 AC 19 ms
19,544 KB
testcase_11 AC 33 ms
19,556 KB
testcase_12 AC 33 ms
19,604 KB
testcase_13 AC 20 ms
19,548 KB
testcase_14 AC 9 ms
19,300 KB
testcase_15 AC 37 ms
19,752 KB
testcase_16 AC 57 ms
20,320 KB
testcase_17 AC 59 ms
20,192 KB
testcase_18 AC 61 ms
20,188 KB
testcase_19 AC 39 ms
19,664 KB
testcase_20 AC 54 ms
20,192 KB
testcase_21 AC 37 ms
19,580 KB
testcase_22 AC 6 ms
19,288 KB
testcase_23 AC 7 ms
19,124 KB
testcase_24 AC 6 ms
19,300 KB
testcase_25 AC 6 ms
19,128 KB
testcase_26 AC 6 ms
19,324 KB
testcase_27 AC 7 ms
19,280 KB
testcase_28 AC 6 ms
19,188 KB
testcase_29 AC 6 ms
19,320 KB
testcase_30 AC 6 ms
19,168 KB
testcase_31 AC 6 ms
19,320 KB
testcase_32 AC 7 ms
19,208 KB
testcase_33 AC 7 ms
19,196 KB
testcase_34 AC 6 ms
19,200 KB
testcase_35 AC 59 ms
20,192 KB
testcase_36 AC 61 ms
20,176 KB
testcase_37 AC 67 ms
20,316 KB
testcase_38 AC 56 ms
20,192 KB
testcase_39 AC 6 ms
19,280 KB
testcase_40 AC 5 ms
19,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int pos[2017][2017];
vector<pair<int, int>> coin;
int N;
int main() {
	int ans = 0;
	for(int i = 0; i < 2017; i++) {
		for(int j = 0; j < 2017; j++) {
			pos[i][j] = -1;
		}
	}
	cin >> N;
	int X, Y, x, y, cx, cy;
	int c = -1;
	bool flag = true;
	for(int i = 0; i < N; i++) {
		cin >> X >> Y;
		for(int dy = -2; dy <= 2; dy++) {
			for(int dx = -2; dx <= 2; dx++) {
				x = (X / 10) + dx;
				y = (Y / 10) + dy;
				if(x < 0 || y < 0) continue;
				c = pos[x][y];
				if(c < 0) continue;
				cx = coin[c].first, cy = coin[c].second;
				if((cx - X) * (cx - X) + (cy - Y) * (cy - Y) < 400) {
					flag = false;
				}
			}
		}
		if(flag) {
			ans++;
			pos[X / 10][Y / 10] = coin.size();
			coin.push_back(pair<int, int>(X, Y));
		}
		flag = true;
	}
	cout << ans << endl;
	return 0;
}
0