博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 5826 physics
阅读量:6573 次
发布时间:2019-06-24

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

该问题和xi,di均无关,碰撞只会使得速度反向,大小不会变。因此只要计算速度。

#pragma comment(linker, "/STACK:1024000000,1024000000")#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long LL;const double pi=acos(-1.0),eps=1e-8;void File(){ freopen("D:\\in.txt","r",stdin); freopen("D:\\out.txt","w",stdout);}inline int read(){ char c = getchar(); while(!isdigit(c)) c = getchar(); int x = 0; while(isdigit(c)) { x = x * 10 + c - '0'; c = getchar(); } return x;}const int maxn=100010;int T,n;double C,v0[maxn];int main(){ scanf("%d",&T); while(T--) { scanf("%d%lf",&n,&C); for(int i=1;i<=n;i++) { scanf("%lf",&v0[i]); int xi,di; scanf("%d%d",&xi,&di); } sort(v0+1,v0+n+1); int q; scanf("%d",&q); for(int i=1;i<=q;i++) { int t,k; scanf("%d%d",&t,&k); printf("%.3lf\n",sqrt(2.0*C*t+v0[k]*v0[k])); } } return 0;}

 

转载于:https://www.cnblogs.com/zufezzt/p/5764569.html

你可能感兴趣的文章
js 替换非法字符
查看>>
(转)C# Winform应用程序占用内存较大解决方法整理
查看>>
win10下安装mysql5.6 zip形式步骤
查看>>
Shell:while语句、for语句、if语句
查看>>
HTTP缓存原理及相关知识(2)-CDN
查看>>
eclipse代码编辑区字符串自动转义设置
查看>>
思考XSS攻击和跨站伪造请求CSRF
查看>>
实验四恶意代码分析技术 201421430029
查看>>
神一样的代码:
查看>>
跟KingDZ学HTML5之八 HTML5之Web Save
查看>>
Tornado-Secure cookie and Session
查看>>
font-family:中文字体的英文名称 (宋体 微软雅黑)
查看>>
使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(一)——创建应用
查看>>
WPF 动画执行后属性无法修改
查看>>
Mybatis插件原理
查看>>
2016 11 27
查看>>
MongoDB副本集学习(一):概述和环境搭建
查看>>
bzoj1057,poj3250
查看>>
bzoj2150,poj1422,poj1548
查看>>
Thinkbayes_Chapter5
查看>>