結果

問題 No.202 1円玉投げ
ユーザー fiordfiord
提出日時 2016-02-04 01:07:14
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 834 bytes
コンパイル時間 1,614 ms
コンパイル使用メモリ 166,508 KB
実行使用メモリ 16,768 KB
最終ジャッジ日時 2024-12-22 10:06:04
合計ジャッジ時間 32,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,127 ms
16,768 KB
testcase_01 AC 418 ms
13,952 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 8 ms
5,248 KB
testcase_06 AC 432 ms
7,168 KB
testcase_07 AC 512 ms
7,552 KB
testcase_08 AC 508 ms
7,808 KB
testcase_09 AC 210 ms
5,888 KB
testcase_10 AC 54 ms
5,248 KB
testcase_11 AC 155 ms
5,248 KB
testcase_12 AC 161 ms
5,376 KB
testcase_13 AC 68 ms
5,248 KB
testcase_14 AC 11 ms
5,248 KB
testcase_15 AC 203 ms
5,760 KB
testcase_16 AC 870 ms
8,576 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 185 ms
5,504 KB
testcase_20 AC 366 ms
6,784 KB
testcase_21 AC 174 ms
5,504 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 23 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 3 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 TLE -
testcase_36 AC 119 ms
8,576 KB
testcase_37 AC 559 ms
7,936 KB
testcase_38 TLE -
testcase_39 AC 1 ms
5,248 KB
testcase_40 AC 1 ms
13,056 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));
		if(it==grd.end()){
			grd.insert(make_pair(x[i],y[i]));
			cnt++;
		}
		else{
			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=grd.lower_bound(make_pair(it->first,it->second+1));
			}
			if(canput){
				grd.insert(make_pair(x[i],y[i]));
				cnt++;
			}
		}
	}
	cout<<cnt<<endl;
	return 0;
}
0