結果

問題 No.202 1円玉投げ
ユーザー fiordfiord
提出日時 2016-02-04 17:44:18
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,463 ms / 5,000 ms
コード長 686 bytes
コンパイル時間 1,654 ms
コンパイル使用メモリ 166,232 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-12-22 10:06:18
合計ジャッジ時間 11,793 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 281 ms
8,704 KB
testcase_01 AC 391 ms
8,576 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 8 ms
5,248 KB
testcase_06 AC 341 ms
7,296 KB
testcase_07 AC 391 ms
7,680 KB
testcase_08 AC 389 ms
7,680 KB
testcase_09 AC 156 ms
5,784 KB
testcase_10 AC 42 ms
5,248 KB
testcase_11 AC 116 ms
5,248 KB
testcase_12 AC 120 ms
5,408 KB
testcase_13 AC 48 ms
5,248 KB
testcase_14 AC 9 ms
5,248 KB
testcase_15 AC 150 ms
5,632 KB
testcase_16 AC 114 ms
8,704 KB
testcase_17 AC 1,066 ms
8,576 KB
testcase_18 AC 1,098 ms
8,576 KB
testcase_19 AC 139 ms
5,632 KB
testcase_20 AC 275 ms
6,784 KB
testcase_21 AC 138 ms
5,632 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 4 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 1,463 ms
8,576 KB
testcase_36 AC 94 ms
8,576 KB
testcase_37 AC 425 ms
7,936 KB
testcase_38 AC 1,458 ms
8,576 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int dist(int x1,int y1,int x2,int y2){
	return (x1-x2)*(x1-x2)+(y1-y2)*(y1-y2);
}
int main(){
	int n;	cin>>n;
	vector<int> x(n),y(n);
	for(int i=0;i<n;i++)	cin>>x[i]>>y[i];
	set<pair<int,int>> grd;
	int cnt=0;
	for(int i=0;i<n;i++){
		auto it=grd.lower_bound(make_pair(x[i]-20,y[i]-20));
		bool canput=true;
		while(it!=grd.end()&&it->first<=x[i]+20){
			if(dist(x[i],y[i],it->first,it->second)<400){
				canput=false;
				break;
			}
			if(y[i]+20<it->second){
				it=grd.lower_bound(make_pair(it->first+1,y[i]-20));
			}
			else it++;
		}
		if(canput){
			grd.insert(make_pair(x[i],y[i]));
			cnt++;
		}
	}
	cout<<cnt<<endl;
	return 0;
}
0