博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Physics Experiment(POJ 3684)
阅读量:4963 次
发布时间:2019-06-12

本文共 2585 字,大约阅读时间需要 8 分钟。

  • 原题如下:
    Physics Experiment
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 3583   Accepted: 1275   Special Judge

    Description

    Simon is doing a physics experiment with N identical balls with the same radius of R centimeters. Before the experiment, all N balls are fastened within a vertical tube one by one and the lowest point of the lowest ball is H meters above the ground. At beginning of the experiment, (at second 0), the first ball is released and falls down due to the gravity. After that, the balls are released one by one in every second until all balls have been released. When a ball hits the ground, it will bounce back with the same speed as it hits the ground. When two balls hit each other, they with exchange their velocities (both speed and direction).

    Simon wants to know where are the N balls after T seconds. Can you help him?

    In this problem, you can assume that the gravity is constant: g = 10 m/s2.

    Input

    The first line of the input contains one integer C (C ≤ 20) indicating the number of test cases. Each of the following lines contains four integers NHRT.

    1≤ N ≤ 100.
    1≤ H ≤ 10000
    1≤ R ≤ 100
    1≤ T ≤ 10000

    Output

    For each test case, your program should output N real numbers indicating the height in meters of the lowest point of each ball separated by a single space in a single line. Each number should be rounded to 2 digit after the decimal point.

    Sample Input

    21 10 10 1002 10 10 100

    Sample Output

    4.954.95 10.20
  • 题解:一个球的情形很简单。多个球的情形先考虑R=0,模仿热身题(POJ 1852),在那道题中两只蚂蚁相遇后折返我们将其看作不折返而是擦身而过继续走下去,这里我们就可以无视碰撞,视为直接互相穿过继续运动,由于在有碰撞时,球的相对顺序是不会变得的,所以忽略碰撞,将计算得到的坐标进行排序后,就能直到每个球的最终位置。然后我们再考虑R>0的情形,对于从下方开始的第i个球,在按照R=0计算的结果上加上2Ri就好了。
  • 代码:
    1 #include 
    2 #include
    3 #include
    4 #include
    5 #include
    6 #define number s-'0' 7 8 using namespace std; 9 10 const int MAX_N=110;11 const double g=10.0;12 int K,N,H,R,T;13 double y[MAX_N];14 15 void read(int &x){16 char s;17 x=0;18 bool flag=0;19 while(!isdigit(s=getchar()))20 (s=='-')&&(flag=true);21 for(x=number;isdigit(s=getchar());x=x*10+number);22 (flag)&&(x=-x);23 }24 25 void write(int x)26 {27 if(x<0)28 {29 putchar('-');30 x=-x;31 }32 if(x>9)33 write(x/10);34 putchar(x%10+'0');35 }36 37 double calc(int);38 39 int main()40 {41 read(K);42 while (K>0)43 {44 read(N);read(H);read(R);read(T);45 for (int i=0; i

     

转载于:https://www.cnblogs.com/Ymir-TaoMee/p/9509549.html

你可能感兴趣的文章
11-2犀牛读书笔记
查看>>
Openjudge 1.12-04
查看>>
elementUI-事件绑定Bug
查看>>
我的asp.net core目录
查看>>
BZOJ1044: [HAOI2008]木棍分割
查看>>
synchronized的可重入性
查看>>
python 之路 13 ORM SQLAlchemy
查看>>
SQL查询-将性别字段(bit型)显示为“男”、“女”
查看>>
html5+css3开发总结
查看>>
webkit滚动条样式设置
查看>>
基于Linux 2.6.32的进程分析
查看>>
Django项目部署在Linux下以进程方式启动
查看>>
手机浏览器,微信浏览器对background-color不显示的问题
查看>>
让初学者纠结的相对路径和绝对路径
查看>>
不可不知的安卓屏幕知识
查看>>
Struts2 后台获取路径的几种方法
查看>>
kafka_2.10-0.8.1.1.tgz的1或3节点集群的下载、安装和配置(图文详细教程)绝对干货...
查看>>
【WPF学习笔记】之如何把数据库里的值读取出来然后显示在页面上:动画系列之(六)(评论处有学习资料及源码)...
查看>>
tomcat+nginx实现
查看>>
大型网站架构系列:分布式消息队列(二)
查看>>