結果

問題 No.202 1円玉投げ
ユーザー kaffelunkaffelun
提出日時 2017-10-14 19:37:07
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 84 ms / 5,000 ms
コード長 828 bytes
コンパイル時間 1,533 ms
コンパイル使用メモリ 163,084 KB
実行使用メモリ 20,320 KB
最終ジャッジ日時 2024-12-22 11:00:46
合計ジャッジ時間 4,376 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
20,196 KB
testcase_01 AC 81 ms
20,320 KB
testcase_02 AC 8 ms
19,200 KB
testcase_03 AC 7 ms
19,200 KB
testcase_04 AC 7 ms
19,204 KB
testcase_05 AC 12 ms
19,160 KB
testcase_06 AC 71 ms
20,316 KB
testcase_07 AC 77 ms
20,196 KB
testcase_08 AC 79 ms
20,320 KB
testcase_09 AC 46 ms
19,636 KB
testcase_10 AC 25 ms
19,416 KB
testcase_11 AC 38 ms
19,712 KB
testcase_12 AC 40 ms
19,712 KB
testcase_13 AC 26 ms
19,456 KB
testcase_14 AC 12 ms
19,456 KB
testcase_15 AC 44 ms
19,712 KB
testcase_16 AC 64 ms
20,196 KB
testcase_17 AC 65 ms
20,320 KB
testcase_18 AC 66 ms
20,320 KB
testcase_19 AC 43 ms
19,584 KB
testcase_20 AC 63 ms
20,192 KB
testcase_21 AC 41 ms
19,584 KB
testcase_22 AC 7 ms
19,200 KB
testcase_23 AC 8 ms
19,200 KB
testcase_24 AC 7 ms
19,200 KB
testcase_25 AC 8 ms
19,200 KB
testcase_26 AC 8 ms
19,244 KB
testcase_27 AC 7 ms
19,164 KB
testcase_28 AC 7 ms
19,328 KB
testcase_29 AC 8 ms
19,072 KB
testcase_30 AC 8 ms
19,184 KB
testcase_31 AC 7 ms
19,200 KB
testcase_32 AC 9 ms
19,200 KB
testcase_33 AC 9 ms
19,200 KB
testcase_34 AC 8 ms
19,404 KB
testcase_35 AC 65 ms
20,196 KB
testcase_36 AC 70 ms
20,192 KB
testcase_37 AC 84 ms
20,316 KB
testcase_38 AC 70 ms
20,192 KB
testcase_39 AC 7 ms
19,200 KB
testcase_40 AC 7 ms
19,220 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