CCF——2019/12/15——第二题——回收站选址(100分)

#include <iostream>
#include <algorithm>
#include <cstring>
#include <cmath>

using namespace std;

const int M = 6;
const int MAX=1006;

int a[M];//存放每个得分的选址个数 

struct Node{
	int x;
	int y;
}b[MAX];

int main(void)
{
	int n;
	cin >> n;
	for(int i=0; i<n; i++){
		cin >> b[i].x;
		cin >> b[i].y;
	}
	
	for(int i=0; i<n; i++){
		int cnt = 0; 
		int sun = 0;
		for(int j=0; j<n; j++){
			if(b[j].x == b[i].x && b[j].y == b[i].y+1){
				cnt++;//右 
			}else if(b[j].x == b[i].x && b[j].y == b[i].y-1){
				cnt++;//左 
			}else if(b[j].x == b[i].x+1 && b[j].y == b[i].y){
				cnt++;//上 
			}else if(b[j].x == b[i].x-1 && b[j].y == b[i].y){
				cnt++;//下 
			}else if(b[j].x == b[i].x+1 && b[j].y == b[i].y+1){
				sun++;//右下 
			}else if(b[j].x == b[i].x+1 && b[j].y == b[i].y-1){
				sun++;//右上 
			}else if(b[j].x == b[i].x-1 && b[j].y == b[i].y+1){
				sun++;//左下 
			}else if(b[j].x == b[i].x-1 && b[j].y == b[i].y-1){
				sun++;//左上 
			}	
		}
		
		if(cnt == 4){//找到垃圾点,开始计算评分 
			if(sun == 0){
				a[0]++;
			}else if(sun == 1){
				a[1]++;
			}else if(sun == 2){
				a[2]++;
			}else if(sun ==3){
				a[3]++;
			}else if(sun == 4){
				a[4]++;
			}
			
		} 
		
	}
	
	cout << a[0] << endl;
	cout << a[1] << endl;
	cout << a[2] << endl;
	cout << a[3] << endl;
	cout << a[4] << endl;
	
	
	return 0;
}

100分 

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值