結果

問題 No.202 1円玉投げ
ユーザー 古寺いろは古寺いろは
提出日時 2015-05-08 22:08:46
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2,873 ms / 5,000 ms
コード長 878 bytes
コンパイル時間 1,758 ms
コンパイル使用メモリ 166,492 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-12-22 08:44:29
合計ジャッジ時間 34,714 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 557 ms
9,472 KB
testcase_01 AC 2,873 ms
9,472 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 67 ms
6,820 KB
testcase_06 AC 2,281 ms
7,936 KB
testcase_07 AC 2,535 ms
8,448 KB
testcase_08 AC 2,545 ms
8,576 KB
testcase_09 AC 1,324 ms
6,816 KB
testcase_10 AC 449 ms
6,820 KB
testcase_11 AC 1,105 ms
6,820 KB
testcase_12 AC 1,133 ms
6,820 KB
testcase_13 AC 514 ms
6,816 KB
testcase_14 AC 80 ms
6,820 KB
testcase_15 AC 1,265 ms
6,820 KB
testcase_16 AC 678 ms
9,472 KB
testcase_17 AC 1,742 ms
9,472 KB
testcase_18 AC 1,777 ms
9,600 KB
testcase_19 AC 1,181 ms
6,820 KB
testcase_20 AC 2,046 ms
7,552 KB
testcase_21 AC 1,162 ms
6,816 KB
testcase_22 AC 5 ms
6,816 KB
testcase_23 AC 6 ms
6,816 KB
testcase_24 AC 6 ms
6,816 KB
testcase_25 AC 7 ms
6,816 KB
testcase_26 AC 5 ms
6,820 KB
testcase_27 AC 5 ms
6,820 KB
testcase_28 AC 5 ms
6,816 KB
testcase_29 AC 7 ms
6,816 KB
testcase_30 AC 5 ms
6,816 KB
testcase_31 AC 3 ms
6,816 KB
testcase_32 AC 7 ms
6,820 KB
testcase_33 AC 12 ms
6,820 KB
testcase_34 AC 8 ms
6,820 KB
testcase_35 AC 1,083 ms
9,600 KB
testcase_36 AC 1,008 ms
9,600 KB
testcase_37 AC 2,761 ms
8,832 KB
testcase_38 AC 1,069 ms
9,472 KB
testcase_39 AC 5 ms
6,820 KB
testcase_40 AC 3 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

int sy[20130];
int sx[20130];

int main() {
	int N;
	cin >> N;
	vector<long long> x(N), y(N);

	for (int i = 0; i < 20130; i++)
	{
		sy[i] = 100030;
		sx[i] = 100030;
	}

	for (int i = 0; i < N; i++)
	{
		cin >> x[i] >> y[i];
		x[i] += 50;
		y[i] += 50;
		sy[y[i]] = min(sy[y[i]], i + 1);
		sx[x[i]] = min(sx[x[i]], i + 1);
	}

	int ans = 0;
	set<long long> s;

	for (int i = 0; i < N; i++)
	{
		bool flag = true;
		for (int dy = -20; dy <= 20 && flag; dy++)
		{
			for (int dx = -20; dx <= 20 && flag; dx++)
			{
				if (dy*dy + dx*dx >= 400) continue;
				long long Y = y[i] + dy;
				long long X = x[i] + dx;
				if (sy[Y] >= i + 1 && sx[X] >= i + 1) continue;
				if (s.count(Y * 30001 + X)){
					flag = false;
					break;
				}
			}
		}
		if (flag){
			ans++;
			s.insert(y[i] * 30001 + x[i]);
		}
	}
	cout << ans << endl;

}
0