POJ-2536 Gopher II

题目链接:http://poj.org/problem?id=2536

题目大意:

有n只地鼠的坐标,m个洞的坐标,地鼠的移动速度为v,在s秒以后会飞来一只老鹰要吃地鼠,问有多少个地鼠可能被吃。

解题思路:

二分图最大匹配。

匹配多了一个条件判断距离而已。。。

代码如下:

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
using namespace std;
int n, m, s, v;
int match[110];
bool use[110];

struct gopher
{
	double x, y;
}g[110];

struct hole
{
	double x, y;
}h[110];

double dis(gopher g, hole h)
{
	return sqrt(((g.x - h.x) * (g.x - h.x) + (g.y - h.y) * (g.y - h.y)));
}

bool find(int u) //地鼠找洞
{
	for(int i = 1; i <= m; ++i)
	{
		if(!use[i] && dis(g[u], h[i]) <= (double)(s * v))
		{
			use[i] = true;
			if(match[i] == -1 || find(match[i]))
			{
				match[i] = u;
				return true;
			}
		}
	}
	return false;
}

int sum()
{
	int sumall = 0;
	for(int i = 1; i <= n; ++i)
	{
		memset(use, false, sizeof(use));
		if(find(i))
			sumall++;
	}
	return sumall;
}

int main()
{
	double x, y;
	int ans;
	while(scanf("%d%d%d%d", &n, &m, &s, &v) != EOF)
	{
		memset(match, -1, sizeof(match));
		for(int i = 1; i <= n; ++i) //地鼠坐标
			scanf("%lf%lf", &g[i].x, &g[i].y);
		for(int i = 1; i <= m; ++i) //洞的坐标
			scanf("%lf%lf", &h[i].x, &h[i].y);
		ans = sum();
		printf("%d\n", n - ans);
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值