hdu 4445 Crazy Tank (暴力枚举)
Crazy Tank
Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 4562    Accepted Submission(s): 902

Now you’re controlling the tank Laotu on a platform which is H meters above the ground. Laotu is so old that you can only choose a shoot angle(all the angle is available) before game start and then any adjusting is not allowed. You need to
launch N cannonballs and you know that the i-th cannonball’s initial speed is Vi.
On the right side of Laotu There is an enemy tank on the ground with coordination(L1, R1) and a friendly tank with coordination(L2, R2). A cannonball is considered hitting enemy tank if it lands on the ground between [L1,R1] (two ends are included). As the
same reason, it will be considered hitting friendly tank if it lands between [L2, R2]. Laotu's horizontal coordination is 0.
The goal of the game is to maximize the number of cannonballs which hit the enemy tank under the condition that no cannonball hits friendly tank.
The g equals to 9.8.
Each test case contains 3 lines.
The first line contains an integer N(0≤N≤200), indicating the number of cannonballs to be launched.
The second line contains 5 float number H(1≤H≤100000), L1, R1(0<L1<R1<100000) and L2, R2(0<L2<R2<100000). Indicating the height of the platform, the enemy tank coordinate and the friendly tank coordinate. Two tanks may overlap.
The third line contains N float number. The i-th number indicates the initial speed of i-th cannonball.
The input ends with N=0.
2
10 10 15 30 35
10.0
20.0
2
10 35 40 2 30
10.0
20.0
0
1
0HintIn the first case one of the best choices is that shoot the cannonballs parallelly to the horizontal line, then the first
cannonball lands on 14.3 and the second lands on 28.6.
In the second there is no shoot angle to make any cannonball land between [35,40] on the condition that no
cannonball lands between [2,30].
这题也是醉了,居然暴力枚举,一直推公式了。
对于[-PI/2,PI/2]区间,每次累加一个较小值。遍历N个区间。求得满足条件最多的那个就是答案。
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<algorithm>
using namespace std;
#define N 205
#define LL __int64
const double eps=1e-9;
const double PI=acos(-1.0);
double h,l1,l2,r1,r2;
double v[N],g=9.8;
int n;
int fun(double anl)
{
int i,tmp=0;
double vx,vy1,vy2,t,x;
for(i=0;i<n;i++)
{
vx=v[i]*cos(anl);
vy1=v[i]*sin(anl);
vy2=sqrt(vy1*vy1+2*g*h);
t=(vy1+vy2)/g;
x=vx*t;
if(x>=l2 &&x<=r2 )
return 0;
if(x>=l1 &&x<=r1 )
tmp++;
}
return tmp;
}
int main()
{
int i;
while(scanf("%d",&n),n)
{
scanf("%lf%lf%lf%lf%lf",&h,&l1,&r1,&l2,&r2);
for(i=0;i<n;i++)
{
scanf("%lf",&v[i]);
}
double a,add=PI/1000;
int ans=0;
for(a=-PI/2;a<=PI/2 ;a+=add)
{
int tmp=fun(a);
ans=max(ans,tmp);
}
printf("%d\n",ans);
}
return 0;
}
版权声明:本文博客原创文章。博客,未经同意,不得转载。
hdu 4445 Crazy Tank (暴力枚举)的更多相关文章
- hdu 4445 Crazy Tank(物理过程枚举)
		
遇到物理题,千万不要一味的当成物理题去想着推出一个最终结果来,这样ACM竞赛成了物理比赛,出题人就没水平了...往往只需要基础的物理分析,然后还是用算法去解决问题.这题n小于等于200,一看就估计是暴 ...
 - [物理题+枚举] hdu 4445 Crazy Tank
		
题意: 给你N个炮弹的发射速度,以及炮台高度H和L1,R1,L2,R2. 问任选发射角度.最多能有几个炮弹在不打入L2~R2的情况下打入L1~R1 注意:区间有可能重叠. 思路: 物理题,发现单纯的依 ...
 - HDU 4445 Crazy Tank --枚举
		
题意: n个物体从高H处以相同角度抛下,有各自的初速度,下面[L1,R1]是敌方坦克的范围,[L2,R2]是友方坦克,问从某个角度抛出,在没有一个炮弹碰到友方坦克的情况下,最多的碰到敌方坦克的炮弹数. ...
 - hdu 4445 Crazy Tank
		
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> ...
 - HDU 4445 Crazy Tank 高中物理知识忘得差不多了
		
题意不难理解,仔细看题吧,就不说题意了 #include <iostream> #include <cstdio> #include <cstring> #incl ...
 - hdoj 4445 Crazy Tank 物理题/枚举角度1
		
Crazy TankTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total S ...
 - HDU 5778 abs (暴力枚举)
		
abs Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others) Problem De ...
 - HDU 1015.Safecracker【暴力枚举】【8月17】
		
Safecracker Problem Description === Op tech briefing, 2002/11/02 06:42 CST === "The item is lo ...
 - HDU - 5128The E-pang Palace+暴力枚举,计算几何
		
第一次写计算几何,ac,感动. 不过感觉自己的代码还可以美化一下. 传送门:http://acm.hdu.edu.cn/showproblem.php?pid=5128 题意: 在一个坐标系中,有n个 ...
 
随机推荐
- 使用X264编码yuv格式的视频帧使用ffmpeg解码h264视频帧
			
前面一篇博客介绍在centos上搭建点击打开链接ffmpeg及x264开发环境.以下就来问个样例: 1.利用x264库将YUV格式视频文件编码为h264格式视频文件 2.利用ffmpeh库将h264格 ...
 - 在JBuilder8中使用ANT
			
在JBuilder8中使用ANT 作者:翁驰原 在JBuilder8中,Ap ...
 - maven snapshot和release版本号之间的差
			
在使用maven过程.我们经常会在不稳定的状态有很多公共图书馆在发展阶段.需要改变在任何时间和公布,你可能有一天一次发布.经验bug时间,甚至一天公布N次要.我们知道,.maven依赖管理是基于管理的 ...
 - c++头
			
头文件c/c++独特的概念. 首先解释声明和定义的区别. extern int x;这是一个可变x声明,void fun();这是函数fun()声明.class a;这是类a声明. int x;变量x ...
 - 怎样配置git ssh连接,怎样在GitHub上加入协作开发人员,怎样配置gitignore和怎样在GitHub上删除资源库.
			
**********1.在运行git push origin master指令时报例如以下错误: iluckysi@ILUCKYSI-PC /d/ilucky/message/code (master ...
 - Ubuntu在构建Robotframework+Selenium周围环境
			
最近经历了从Windows进入系统Ubuntukylin下列.因此,测试工具也需要被重新安装,今天和共享安装过程. 我用的是环境:Ubuntu Kylin 14.04 64Bit系统. 启动权,首先, ...
 - Android - 用Fragments实现动态UI - 和其他Fragments通信
			
为了重用Fragment UI组件,应该把每个都设计为它自有的模块组件并且有自己的布局和行为.一旦定义了这些可重用的Fragment,你可以把它们和一个activity关联然后和程序的逻辑一起实现上层 ...
 - Web Deploy发布网站及常见问题解决方法(图文)
			
Web Deploy发布网站及常见问题解决方法(图文) Windows2008R2+IIs7.5 +Web Deploy 3.5 Web Deploy 3.5下载安装 http://www.iis.n ...
 - JSTL实现int数据的类型的长度
			
JSTL否int类型转换string该功能.为了解决增益int数据的类型的长度,闹失踪. 得到String的数据的长度是jstl的fn能够${fn:length(string)},但int做数据? 经 ...
 - 搞个这样的APP要多久? (转)
			
这是一个“如有雷同,纯属巧合”的故事,外加一些废话,大家请勿对号入座.开始了…… 我有些尴尬地拿着水杯,正对面坐着来访的王总,他是在别处打拼的人,这几年据说收获颇丰,见移动互联网如火如荼,自然也想着要 ...