Codeforces Round #114 (Div. 1) A. Wizards and Trolleybuses 物理题

A. Wizards and Trolleybuses

Time Limit: 20 Sec

Memory Limit: 256 MB

题目连接

http://codeforces.com/contest/167/problem/A

Description

In some country live wizards. They love to ride trolleybuses.

A city in this country has a trolleybus depot with n trolleybuses. Every day the trolleybuses leave the depot, one by one and go to the final station. The final station is at a distance of d meters from the depot. We know for the i-th trolleybus that it leaves at the moment of time ti seconds, can go at a speed of no greater than vi meters per second, and accelerate with an acceleration no greater than ameters per second squared. A trolleybus can decelerate as quickly as you want (magic!). It can change its acceleration as fast as you want, as well. Note that the maximum acceleration is the same for all trolleys.

Despite the magic the trolleys are still powered by an electric circuit and cannot overtake each other (the wires are to blame, of course). If a trolleybus catches up with another one, they go together one right after the other until they arrive at the final station. Also, the drivers are driving so as to arrive at the final station as quickly as possible.

You, as head of the trolleybuses' fans' club, are to determine for each trolley the minimum time by which it can reach the final station. At the time of arrival at the destination station the trolleybus does not necessarily have zero speed. When a trolley is leaving the depot, its speed is considered equal to zero. From the point of view of physics, the trolleybuses can be considered as material points, and also we should ignore the impact on the speed of a trolley bus by everything, except for the acceleration and deceleration provided by the engine.

Input

The first input line contains three space-separated integers nad (1 ≤ n ≤ 105, 1 ≤ a, d ≤ 106) — the number of trolleybuses, their maximum acceleration and the distance from the depot to the final station, correspondingly.

Next n lines contain pairs of integers ti vi (0 ≤ t1 < t2... < tn - 1 < tn ≤ 106, 1 ≤ vi ≤ 106) — the time when the i-th trolleybus leaves the depot and its maximum speed, correspondingly. The numbers in the lines are separated by spaces.

Output

For each trolleybus print a single line the time it arrives to the final station. Print the times for the trolleybuses in the order in which the trolleybuses are given in the input. The answer will be accepted if the absolute or relative error doesn't exceed 10 - 4.

Sample Input

3 10 10000
0 10
5 11
1000 1

Sample Output

1000.5000000000
1000.5000000000
11000.0500000000

HINT

 

题意

有n辆车,车的加速度为a,他们都要从起点开到终点,起点终点距离为d

第i辆车的发车时间是t[i],最大速度是v[i]

保证,不能超车

问你每辆车到达终点的时间是多少

题解:

高中物理题,稍微推推公式O1回答就好了

代码:

#include<iostream>
#include<stdio.h>
#include<math.h>
using namespace std;
int n;
double a,d;
double t[1000005],v[1000005];
double ans[1000005];
int main()
{scanf("%d%lf%lf",&n,&a,&d);for(int i=0;i<n;i++){scanf("%lf%lf",&t[i],&v[i]);if(v[i]*v[i]/(2*a)>=d)ans[i]=sqrt(2.*d/a)+t[i];elseans[i]=v[i]/a + (d-v[i]*v[i]/(2.0*a))/v[i]+t[i];}for(int i=1;i<n;i++){if(ans[i]<ans[i-1])ans[i]=ans[i-1];}for(int i=0;i<n;i++)printf("%.10f\n",ans[i]);
}

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/399293.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

如何使用GOOGLE高级搜索技巧

原文出处&#xff1a; 新浪博客&#xff08;未找到原始出处&#xff09; 如何使用GOOGLE高级搜索技巧 一&#xff0c;GOOGLE简介 Google&#xff08;www.google.com&#xff09;是一个搜索引擎&#xff0c;由两个斯坦福大学博士生Larry Page与Sergey Brin于1998年9月发明&am…

powershell 遍历json_遍历JSON文件PowerShell

我试图在PowerShell中遍历以下JSON文件。如果没有专门命名顶部标签(例如17443和17444)&#xff0c;由于我事先不知道它们的名称&#xff0c;就无法找到遍历数据的方法。我想为所有记录输出标签3、4和5(标题&#xff0c;名字&#xff0c;姓氏)。我该怎么做&#xff1f;{"17…

ZooKeeper管理分布式环境中的数据

Reference: http://www.cnblogs.com/wuxl360/p/5817549.html 本节本来是要介绍ZooKeeper的实现原理&#xff0c;但是ZooKeeper的原理比较复杂&#xff0c;它涉及到了paxos算法、Zab协议、通信协议等相关知 识&#xff0c;理解起来比较抽象所以还需要借助一些应用场景&#xff0…

启用nginx status状态详解

nginx和php-fpm一样内建了一个状态页&#xff0c;对于想了解nginx的状态以及监控nginx非常有帮助。为了后续的zabbix监控&#xff0c;我们需要先了解nginx状态页是怎么回事。 1. 启用nginx status配置 在默认主机里面加上location或者你希望能访问到的主机里面。 server {liste…

企业级应用架构(三)三层架构之数据访问层的改进以及测试DOM的发布

在上一篇我们在宏观概要上对DAL层进行了封装与抽象。我们的目的主要有两个&#xff1a;第一&#xff0c;解除BLL层对DAL层的依赖&#xff0c;这一点我们通过定义接口做到了&#xff1b;第二&#xff0c;使我们的DAL层能够支持一切数据访问技术,如Ado.net,EF,linq To Sql&#x…

ctr多少正常_亚马逊广告ctr多少才算合格,如何提升亚马逊CTR

亚马逊广告ctr多少才算合格&#xff0c;如何提升亚马逊CTR很多亚马逊卖家并不重视点击率&#xff0c;其实点击率和转化率是同样重要的。好的点击率可以提升产品listing的流量&#xff0c;间接影响转化&#xff0c;促进销量。一般来说亚马逊点击率多少算正常呢&#xff1f;CTR全…

在linux中,我为什么不能安装VMware Tools?

在linux中&#xff0c;我为什么不能安装VMware Tools&#xff1f; 应该是操作不正确导致&#xff0c;以下为linux安装VMware Tools的方法。 1、在安装Linux的虚拟机中&#xff0c;单击“虚拟机”菜单下的“安装Vmware-Tools” 2、出现以下菜单&#xff0c;证明Vmware-Tools的光…

判断 CGRect是否“为空”

2019独角兽企业重金招聘Python工程师标准>>> property (nonatomic, assign) CGRect prototypeRect; -----这样的声明应该没有问题的&#xff0c;的if(!self.prototypeRect)报错是因为 CGRect是结构体&#xff0c;不能作非nil判断&#xff0c;你可以利用self.protot…

关于反射Assembly.Load(程序集).CreateInstance(命名空间.类)

关于反射Assembly.Load("程序集").CreateInstance("命名空间.类")而不管在哪一层写这段代码其中的("程序集")读取的实际是web层bin文件夹下的dll,也就是说你反射的类的程序集dll在web层的bin下必须有Assembly.Load("程序集名")Assembl…

centos6安装mysql权限被拒绝_CentOS6.6安装mysql出现的问题

mysql编译需要cmake&#xff0c;我的cmake-2.6.4-5.el6.i686&#xff0c;最新版的是3.1.0&#xff0c;我就先用2.6.4的试试​  [rootlocalhost src]# wget http://cdn.mysql.com/Downloads/MySQL-5.6/mysql-5.6.22.tar.gz​[rootlocalhost src]#tar -zxf mysql-5.6.22.tar.gz…

sqlite insert数据要用“?”代替“%s”

import sqlite3 conn sqlite3.connect(example.db) c conn.cursor()Usually your SQL operations will need to use values from Python variables. You shouldn’t assemble your query using Python’s string operations because doing so is insecure; it makes your pro…

Javascript学习总结 - JS基础系列 二

简述 本系列将持续更新Javascript基础部分的知识&#xff0c;谁都想掌握高端大气的技术&#xff0c;但是我觉得没有一个扎实的基础&#xff0c;我认为一切高阶技术对我来讲都是过眼云烟&#xff0c;要成为一名及格的前端工程师&#xff0c;必须把基础打扎实了。我也想展翅高飞&…

mac 怎样卸载mysql_如何卸载mac中的mysql?

版权声明&#xff1a;本文为博主原创文章&#xff0c;未经博主允许不得转载。首先这篇技术贴在写之前&#xff0c;说点题外话。第一次接触同时&#xff0c;深深的感觉到网络很多技术贴太水&#xff0c;很多问题并不能完全的讲解清楚&#xff0c;甚至有些答非所问。如有问题&…

优秀博主

博主&#xff1a;朱小厮博文地址&#xff1a;http://my.csdn.net/u013256816 标签&#xff1a;JAVA JVM 设计模式 rabbitmq 系统架构 成果&#xff1a; 著《RabbitMQ实战指南》博主&#xff1a;刘望舒博文地址&#xff1a;http://blog.csdn.net/itachi85/article/details/50510…

genymotion 极速模拟器

virtureboxgenymotion jarhttp://www.codeceo.com/article/android-genymotion-config.html //安装模拟器http://download.csdn.net/detail/u011434455/9049145 //插件直接复制到指定目录即可http://pan.baidu.com/disk/home#path%252Fandroid%252Fandroid_tool转载于:h…

mysql 可逆编码_使用MD5编码实现数据库用户密码字段的加密

1 前言 众所周知&#xff0c;MD5是目前应用最多的密码保护方法&#xff0c;该编码传说为不可逆加密编码&#xff1c;也就是说&#xff0c;永运无法倒算原码&#xff1e;。 使用MD5加密用户的操作密码&#xff0c;可以有效防止系统维护人员直接进入数据库时出现系统安全漏洞&…

Unity3D 与 objective-c 之间数据交互。iOS SDK接口封装Unity3D接口

原地址&#xff1a;http://www.cnblogs.com/qingjoin/p/3638915.html Unity 3D 简单工程的创建。与Xcode 导出到iOS 平台请看这 Unity3D 学习 创建简单的按钮、相应事件 Unity C# 代码 using UnityEngine; using System.Collections; using System.Runtime.InteropServices;pu…

ReactJS学习 相关网站

React 入门实例教程-阮一峰 http://www.ruanyifeng.com/blog/2015/03/react.html汇智网-React 互动学习http://hubwiz.com/course/552762019964049d1872fc88/博客园相关文章http://zzk.cnblogs.com/s?tb&wReactJS

开源代码ViewPageIndicator的使用

1. 导入Android studio 使用SlidingMenu的方式导入Android studio不行&#xff0c;不知道为何&#xff0c;过会懂了再写上 2. 代码 activity_main.xml <?xml version"1.0" encoding"utf-8"?> <LinearLayout xmlns:android"http://schemas.…

[unity3d]手游资源热更新策略探讨

原地址&#xff1a;http://blog.csdn.net/dingxiaowei2013/article/details/20079683 我们学习了如何将资源进行打包。这次就可以用上场了&#xff0c;我们来探讨一下手游资源的增量更新策略。注意哦&#xff0c;只是资源哦。关于代码的更新&#xff0c;我们稍后再来研究。理论…