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

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

和蚂蚁问题类似。

#include
#include
#include
#include
#include
#include
using namespace std;int c,n;double h,r,t,T;double ans[105];double cal(double time){ if(time<=0) return h; int f=0; while(1) { if(time<=T) { if(f==0) return h-0.5*10.0*time*time; return h-0.5*10.0*(T-time)*(T-time); } f=f^1; time=time-T; }}int main(){ scanf("%d",&c); while(c--) { scanf("%d%lf%lf%lf",&n,&h,&r,&t); T=sqrt(2*h/10.0); for(int i=0;i

 

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

你可能感兴趣的文章
[nodejs] nodejs开发个人博客(五)分配数据
查看>>
《Linux内核修炼之道》 之 高效学习Linux内核
查看>>
Java数据持久层框架 MyBatis之API学习九(SQL语句构建器详解)
查看>>
30分钟Git命令“从入门到放弃”
查看>>
nginx : TCP代理和负载均衡的stream模块
查看>>
MYSQL数据库间同步数据
查看>>
DevOps 前世今生 | mPaaS 线上直播 CodeHub #1 回顾
查看>>
iOS 解决UITabelView刷新闪动
查看>>
让前端小姐姐愉快地开发表单
查看>>
Dubbo笔记(四)
查看>>
Web前端JQuery入门实战案例
查看>>
java B2B2C Springboot电子商城系统- SSO单点登录之OAuth2.0 登出流程(3)
查看>>
12月26日云栖精选夜读:CDN新品发布:阿里云SCDN安全加速开放公测
查看>>
USB 通信原理
查看>>
7zZip zip RAR iOS
查看>>
date命令的详细用法!
查看>>
分布式存储ceph集群部署
查看>>
UiAutomator源码分析之UiAutomatorBridge框架
查看>>
python 开发之selenium
查看>>
Xcode3.2.5中找不到Mac OS X - Command Line Utility -...
查看>>