2 2 8 6 1 1 4 5 2 10 6 4 5 6 5
1 2
#include<stdio.h> #include<string.h> #include<math.h> #include<algorithm> using namespace std; struct ps { double left;//**左交点**// double right;//**右交点**// }w[10001]; bool comp(ps a,ps b)//**还是按照左交点的大小进行排序**// { if(a.left<b.left) return true; return false; } int main() { int ncases,n,i,width,high,x,r,count,flag; double len,sum,max; scanf("%d",&ncases); while(ncases--) { flag=1;sum=0;count=0; scanf("%d %d %d",&n,&width,&high); for(i=0;i<=n-1;i++) { scanf("%d %d",&x,&r); len=(double)r*r-(double)high/2*high/2; if(len>=0) {len=sqrt(len);}//**以前把这布直接并入到sqrt(len),结果忘了len可以小于0,一直WA**// if(len<0) {len=0;}//**覆盖不到,这个长度就可以忽略掉**// w[i].left=x-len; w[i].right=x+len; } sort(w,w+n,comp); while(sum<width)//**关键思想**// { max=0;//**代表比前一个装置能够辐射的范围往右延长的最大值**// for(i=0;i<=n-1&&w[i].left<=sum;i++)//**w[i].left<=sum保证两个碰水装置可以相交,也就是说两点直接的能够完全覆盖**// { if((w[i].right-sum)>max)//**找出既能保证完全覆盖又能保证这点能够达到的右交点最大,即需要的喷水装置最少**// { max=w[i].right-sum;//**找出最大值**// } } if(max==0)//**说明w[i].left>sum,表示其中一个点的右交点跟另外一个点的左交点没有连接上,即不能完全覆盖**// { flag=0; break; } else { sum=sum+max;//**更新能够覆盖的宽度**// count++; } } if(flag==1) { printf("%d\n",count); } else { printf("0\n"); } } return 0; }
原文地址:http://blog.csdn.net/holyang_1013197377/article/details/39432937