結果

問題 No.202 1円玉投げ
ユーザー sugim48sugim48
提出日時 2015-05-03 23:32:25
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 1,390 bytes
コンパイル時間 1,179 ms
コンパイル使用メモリ 88,036 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-22 06:09:24
合計ジャッジ時間 4,383 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
6,816 KB
testcase_01 AC 80 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 7 ms
6,820 KB
testcase_06 AC 71 ms
6,820 KB
testcase_07 AC 78 ms
6,816 KB
testcase_08 AC 80 ms
6,816 KB
testcase_09 AC 42 ms
6,816 KB
testcase_10 AC 18 ms
6,820 KB
testcase_11 AC 36 ms
6,816 KB
testcase_12 AC 37 ms
6,820 KB
testcase_13 AC 21 ms
6,816 KB
testcase_14 AC 8 ms
6,816 KB
testcase_15 AC 43 ms
6,820 KB
testcase_16 AC 73 ms
6,816 KB
testcase_17 AC 73 ms
6,816 KB
testcase_18 AC 71 ms
6,820 KB
testcase_19 AC 39 ms
6,816 KB
testcase_20 AC 65 ms
6,816 KB
testcase_21 AC 39 ms
6,820 KB
testcase_22 AC 3 ms
6,820 KB
testcase_23 AC 4 ms
6,816 KB
testcase_24 AC 3 ms
6,816 KB
testcase_25 AC 3 ms
6,820 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 4 ms
6,816 KB
testcase_28 AC 3 ms
6,816 KB
testcase_29 AC 3 ms
6,816 KB
testcase_30 AC 3 ms
6,820 KB
testcase_31 AC 4 ms
6,816 KB
testcase_32 AC 4 ms
6,820 KB
testcase_33 AC 4 ms
6,820 KB
testcase_34 AC 4 ms
6,816 KB
testcase_35 AC 76 ms
6,816 KB
testcase_36 AC 78 ms
6,816 KB
testcase_37 AC 86 ms
6,820 KB
testcase_38 AC 79 ms
6,820 KB
testcase_39 AC 2 ms
6,820 KB
testcase_40 AC 3 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <algorithm>
#include <cstdio>
#include <functional>
#include <fstream>
#include <iostream>
#include <cfloat>
#include <climits>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <time.h>
#include <vector>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> i_i;
typedef pair<ll, int> ll_i;
typedef pair<double, int> d_i;
typedef pair<ll, ll> ll_ll;
typedef pair<double, double> d_d;
struct edge { int u, v; ll w; };

ll MOD = 1000000007;
ll _MOD = 1000000009;
double EPS = 1e-10;

vector<int> a[201][201];

bool f(int x1, int y1, int x2, int y2) {
	int dx = x1 - x2, dy = y1 - y2;
	return dx * dx + dy * dy < 20 * 20;
}

int main() {
	int N; cin >> N;
	vector<int> X(N), Y(N);
	int cnt = 0;
	for (int i = 0; i < N; i++) {
		cin >> X[i] >> Y[i];
		int x = X[i] / 100, y = Y[i] / 100;
		bool ok = true;
		for (int dy = -1; dy <= 1; dy++)
			for (int dx = -1; dx <= 1; dx++) {
				int _x = x + dx, _y = y + dy;
				if (_x >= 0 && _x <= 200 && _y >= 0 && _y <= 200) {
					for (int k = 0; k < a[_y][_x].size(); k++) {
						int j = a[_y][_x][k];
						if (f(X[i], Y[i], X[j], Y[j]))
							ok = false;
					}
				}
			}
		if (ok) {
			a[y][x].push_back(i);
			cnt++;
		}
	}
	cout << cnt << endl;
}
0