結果

問題 No.202 1円玉投げ
ユーザー hotpepsihotpepsi
提出日時 2015-05-05 01:33:58
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 1,026 bytes
コンパイル時間 809 ms
コンパイル使用メモリ 73,556 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-06-01 19:50:10
合計ジャッジ時間 3,406 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
9,984 KB
testcase_01 AC 81 ms
9,856 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 7 ms
5,760 KB
testcase_06 AC 71 ms
8,832 KB
testcase_07 AC 77 ms
8,960 KB
testcase_08 AC 77 ms
9,088 KB
testcase_09 AC 42 ms
7,552 KB
testcase_10 AC 19 ms
6,400 KB
testcase_11 AC 36 ms
7,040 KB
testcase_12 AC 37 ms
7,168 KB
testcase_13 AC 22 ms
6,400 KB
testcase_14 AC 9 ms
5,632 KB
testcase_15 AC 42 ms
7,296 KB
testcase_16 AC 81 ms
9,856 KB
testcase_17 AC 79 ms
10,112 KB
testcase_18 AC 78 ms
9,984 KB
testcase_19 AC 40 ms
7,296 KB
testcase_20 AC 61 ms
8,320 KB
testcase_21 AC 40 ms
7,296 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 4 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 4 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 78 ms
9,984 KB
testcase_36 AC 83 ms
9,984 KB
testcase_37 AC 85 ms
9,216 KB
testcase_38 AC 84 ms
9,984 KB
testcase_39 AC 3 ms
5,376 KB
testcase_40 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <sstream>
#include <set>
#include <vector>
#include <cstdio>

using namespace std;

typedef pair<int, int> II;
typedef set<II> IISet;

int main(int argc, char *argv[])
{
	string s;
	getline(cin, s);
	int N = atoi(s.c_str());
	int ans = 0;
	IISet coins[202][202];
	for (int i = 0; i < N; ++i) {
		getline(cin, s);
		stringstream ss(s);
		int x, y;
		ss >> x >> y;
		int sx = (x - 20 + 50) / 100;
		int ex = (x + 20 + 50) / 100;
		int sy = (y - 20 + 50) / 100;
		int ey = (y + 20 + 50) / 100;
		bool remove = false;
		for (int i = sy; i <= ey; ++i) {
			for (int j = sx; j <= ex; ++j) {
				IISet &a = coins[i][j];
				IISet::const_iterator it;
				for (it = a.begin(); it != a.end(); ++it) {
					int dx = it->first - x;
					int dy = it->second - y;
					if ((dx * dx + dy * dy) < 20 * 20) {
						remove = true;
						break;
					}
				}
			}
		}
		if (!remove) {
			coins[(y + 50) / 100][(x + 50) / 100].insert(II(x, y));
			++ans;
		}
	}
	cout << ans << endl;
	return 0;
}
0