CCF-CSP 2019-12-2 回收站选址

原题链接

#include<iostream>
#include<map>

using namespace std;

map<pair<int, int>, int> points;
int pos1[4][2] = { {-1, 0}, {1, 0}, {0, -1}, {0, 1} };
int pos2[4][2] = { {-1, -1}, {-1, 1}, {1, -1}, {1, 1} };

bool isRecycle(int x, int y) {
	for (int i = 0; i < 4; ++i) {
		if (points.count({ x + pos1[i][0], y + pos1[i][1] }) == 0)
			return false;
	}
	return true;
}

int scoreRecycle(int x, int y) {
	int num = 0;
	for (int i = 0; i < 4; ++i) {
		if (points.count({ x + pos2[i][0], y + pos2[i][1] }) == 1)
			num++;
	}
	return num;
}

int main() {
	std::ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cout.tie(nullptr);

	int n;
	cin >> n;
	for (int i = 0; i < n; ++i) {
		pair<int, int> point;
		cin >> point.first >> point.second;
		points[point] = 1;
	}

	int recycle[5] = { 0 };
	for (auto point : points) {
		pair<int, int> curPoint = { point.first.first, point.first.second };
		int x = point.first.first, y = point.first.second;
		if (isRecycle(x, y)) {
			int num = scoreRecycle(x, y);
			recycle[num]++;
		}
	}
	for (int i = 0; i < 5; ++i) {
		cout << recycle[i] << endl;
	}

	return 0;
}

/*样例
7
1 2
2 1
0 0
1 1
1 0
2 0
0 1

11
9 10
10 10
11 10
12 10
13 10
11 9
11 8
12 9
10 9
10 11
12 11*/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值