結果

問題 No.202 1円玉投げ
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2017-03-14 21:49:48
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 784 ms / 5,000 ms
コード長 1,672 bytes
コンパイル時間 1,533 ms
コンパイル使用メモリ 164,848 KB
実行使用メモリ 47,488 KB
最終ジャッジ日時 2024-12-22 10:55:34
合計ジャッジ時間 12,685 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 687 ms
47,488 KB
testcase_01 AC 774 ms
47,104 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 15 ms
7,040 KB
testcase_06 AC 563 ms
35,968 KB
testcase_07 AC 708 ms
39,424 KB
testcase_08 AC 700 ms
39,680 KB
testcase_09 AC 280 ms
25,216 KB
testcase_10 AC 86 ms
13,696 KB
testcase_11 AC 218 ms
21,760 KB
testcase_12 AC 225 ms
22,144 KB
testcase_13 AC 90 ms
14,464 KB
testcase_14 AC 19 ms
7,424 KB
testcase_15 AC 290 ms
24,576 KB
testcase_16 AC 329 ms
46,720 KB
testcase_17 AC 359 ms
46,592 KB
testcase_18 AC 358 ms
46,592 KB
testcase_19 AC 249 ms
23,424 KB
testcase_20 AC 511 ms
33,152 KB
testcase_21 AC 262 ms
23,168 KB
testcase_22 AC 4 ms
6,816 KB
testcase_23 AC 5 ms
6,820 KB
testcase_24 AC 4 ms
6,816 KB
testcase_25 AC 3 ms
6,816 KB
testcase_26 AC 4 ms
6,820 KB
testcase_27 AC 4 ms
6,820 KB
testcase_28 AC 3 ms
6,820 KB
testcase_29 AC 4 ms
6,816 KB
testcase_30 AC 5 ms
6,820 KB
testcase_31 AC 3 ms
6,816 KB
testcase_32 AC 4 ms
6,816 KB
testcase_33 AC 5 ms
6,816 KB
testcase_34 AC 8 ms
6,816 KB
testcase_35 AC 437 ms
46,208 KB
testcase_36 AC 476 ms
47,488 KB
testcase_37 AC 784 ms
41,728 KB
testcase_38 AC 449 ms
47,232 KB
testcase_39 AC 3 ms
6,820 KB
testcase_40 AC 3 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vint;
typedef pair<int,int> pint;
typedef vector<pint> vpint;
#define rep(i,n) for(int i=0;i<(n);i++)
#define REP(i,n) for(int i=n-1;i>=(0);i--)
#define reps(i,f,n) for(int i=(f);i<(n);i++)
#define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();it++)
#define all(v) (v).begin(),(v).end()
#define eall(v) unique(all(v), v.end())
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define chmax(a, b) a = (((a)<(b)) ? (b) : (a))
#define chmin(a, b) a = (((a)>(b)) ? (b) : (a))
const int MOD = 1e9 + 7;
const int INF = 1e9;
const ll INFF = 1e18;

int n;
int x[100010], y[100010];
set<pair<int, int>> se[150][150];

int dist(int x, int y){
	return x * x + y * y;
}
int main(void){
	cin >> n;
	rep(i, n) cin >> x[i] >> y[i];
	int ans = 0;
	rep(i, n){
		// printf("x %d y %d\n", x[i], y[i]);
		int cx = x[i] / 150, cy = y[i] / 150;
		bool flag = true;
		for(auto u : se[cx][cy]){
			int nx = u.fi, ny = u.se;
			auto d = dist(nx - x[i], ny - y[i]);
			// printf("%d %d %d \n", nx, ny, d);
			if(d < 400){
				flag = false;
				break;
			}
		}
		if(flag){
			ans++;
			se[cx][cy].insert(mp(x[i], y[i]));
			se[max(cx - 1, 0)][cy].insert(mp(x[i], y[i]));
			se[cx + 1][cy].insert(mp(x[i], y[i]));
			se[cx][max(cy - 1, 0)].insert(mp(x[i], y[i]));
			se[cx][cy + 1].insert(mp(x[i], y[i]));

			se[max(cx - 1, 0)][max(cy - 1, 0)].insert(mp(x[i], y[i]));
			se[cx + 1][max(cy - 1, 0)].insert(mp(x[i], y[i]));
			se[max(cx - 1, 0)][cy + 1].insert(mp(x[i], y[i]));
			se[cx + 1][cy + 1].insert(mp(x[i], y[i]));
		}
	}
	printf("%d\n", ans);
	return 0;
}
0