結果

問題 No.202 1円玉投げ
ユーザー 古寺いろは古寺いろは
提出日時 2015-05-03 23:38:00
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 847 bytes
コンパイル時間 1,294 ms
コンパイル使用メモリ 151,204 KB
実行使用メモリ 8,868 KB
最終ジャッジ日時 2023-08-23 21:36:44
合計ジャッジ時間 36,621 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 568 ms
8,584 KB
testcase_01 AC 2,974 ms
8,596 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 72 ms
4,380 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 498 ms
4,684 KB
testcase_11 AC 1,143 ms
5,684 KB
testcase_12 WA -
testcase_13 AC 573 ms
4,788 KB
testcase_14 AC 92 ms
4,380 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 1,904 ms
8,844 KB
testcase_18 AC 1,906 ms
8,580 KB
testcase_19 AC 1,270 ms
5,640 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 6 ms
4,376 KB
testcase_23 AC 5 ms
4,380 KB
testcase_24 AC 6 ms
4,380 KB
testcase_25 AC 6 ms
4,376 KB
testcase_26 AC 9 ms
4,380 KB
testcase_27 AC 5 ms
4,380 KB
testcase_28 AC 5 ms
4,376 KB
testcase_29 AC 6 ms
4,380 KB
testcase_30 AC 6 ms
4,380 KB
testcase_31 AC 3 ms
4,380 KB
testcase_32 AC 7 ms
4,376 KB
testcase_33 AC 13 ms
4,376 KB
testcase_34 AC 9 ms
4,376 KB
testcase_35 AC 1,188 ms
8,544 KB
testcase_36 AC 1,104 ms
8,624 KB
testcase_37 WA -
testcase_38 AC 1,161 ms
8,644 KB
testcase_39 AC 4 ms
4,376 KB
testcase_40 AC 3 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int sy[20030];
int sx[20030];

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

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

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

	int ans = 0;
	set<unsigned int> 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;
				int Y = y[i] + dy;
				int X = x[i] + dx;
				if (sy[Y] >= i + 1 && sx[X] >= i + 1) continue;
				if (s.count(Y * 20001 + X)){
					flag = false;
					break;
				}
			}
		}
		if (flag){
			ans++;
			s.insert(y[i] * 20001 + x[i]);
		}
	}
	cout << ans << endl;
	
} 
0