NYOJ12,喷水装置(二)

     原题链接:点击打开链接

     这是一个贪心算法中的区间完全覆盖问题,详细解题思路点击打开链接

     不同的是在化为区间完全覆盖问题之前需要先对其有效喷水面积进行筛选,再化为区间,然后问题就明朗化了,下面直接贴代码:

 
#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <math.h>
using namespace std;
struct sb
{
	double from,to;
}a[10005];
bool cmp(sb t1,sb t2)
{
	if(t1.from<t2.from)
		return true;
	if(t1.from==t2.from&&t1.to>t2.to)
		return true;
	return false;
}
int main()
{
	int t,n,i;
	double d,h,r,w,x;
	cin>>t;
	while(t--)
	{
		int count=0,flag=0,sum=0;
		double begin=0,end=0;
		cin>>n>>w>>h;
		for(i=0;i<n;i++)
		{
			cin>>x>>r;
			d=sqrt(r*r-((h/2)*(h/2)));
			if(r>=(h/2))
			{
				if(x-d>w||x+d<0)
					continue;
				a[count].from=x-d;
				a[count].to=x+d;
				count++;
			}
		}
		if(count==0)
		{
			cout<<0<<endl;
			continue;
		}
		std::sort(a,a+count,cmp);
		if(a[0].from>0)
		{
			cout<<0<<endl;
			continue;
		}
		double max=0;
		int num;
		for(i=0;i<count;i++)
		{
			if(a[i].from<=end)
			{
				for(int num=i;num<count;num++)
				{
					if(a[num].to>max&&a[num].to>end&&a[num].from<=end)
					{
						max=a[num].to;
						i=num;
					}
				}
				end=max;
				sum++;
			}
			if(end>w)
				break;
		}
		if(end<w||begin==end)
		{
			cout<<0<<endl;
			continue;
		}
		cout<<sum<<endl;
	}
	return 0;
}        
        


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值