結果

問題 No.202 1円玉投げ
ユーザー koyumeishikoyumeishi
提出日時 2015-05-03 23:43:26
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 278 ms / 5,000 ms
コード長 1,078 bytes
コンパイル時間 1,098 ms
コンパイル使用メモリ 86,860 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-12-22 06:23:24
合計ジャッジ時間 5,167 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstdio>
#include <sstream>
#include <map>
#include <string>
#include <algorithm>
#include <queue>
#include <cmath>
#include <set>
using namespace std;

int main(){
	int N;
	cin >> N;
	vector<long long> x(N), y(N);
	for(int i=0; i<N; i++){
		cin >> x[i] >> y[i];
	}
	int ans = 0;
	int bucket_size = 150;
	vector<vector<set< pair<long long,long long> >>> bucket(20000 / bucket_size + 1, vector<set< pair<long long,long long> >>(20000 / bucket_size + 1));
	for(int i=0; i<N; i++){
		int bx = x[i] / bucket_size;
		int by = y[i] / bucket_size;

		bool ok = true;
		for(int dy=max(0,by-1); dy<=min(by+1, 20000 / bucket_size ) && ok; dy++){
			for(int dx=max(0,bx-1); dx<=min(bx+1, 20000 / bucket_size ) && ok; dx++){
				for(auto itr = bucket[dy][dx].begin(); itr != bucket[dy][dx].end() && ok; itr++){
					if( (itr->first - x[i])*(itr->first - x[i]) + (itr->second - y[i])*(itr->second - y[i]) < 20*20 ) ok = false;
				}
			}
		}
		if(ok){
			ans++;
			bucket[by][bx].insert({x[i], y[i]});
		}
	}

	cout << ans << endl;
	return 0;
}
0