码迷,mamicode.com
首页 > 其他好文 > 详细

HDU1445

时间:2014-07-22 00:00:37      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   strong   

                                       View Code

Problem : 1445 ( Ride to School )     Judge Status : Accepted
RunId : 11127796    Language : C++    Author : 0902130217
Code Render Status : Rendered By HDOJ C++ Code Render Version 0.01 Beta

思路分析:査理肯定会跟最先到达目的地的人一起到达。、,那么我们只需要寻找最先到达的人,及所花时间最少的人。

代码展示:

 1 #include<iostream>
 2 #include<math.h>
 3 using namespace std;
 4 int main()
 5 {
 6 
 7     while(1)
 8     {
 9             int n;
10             cin>>n;
11             if(n==0) break;
12             int v,t;
13             double min=1<<30;
14             for(int i=1;i<=n;i++)
15             {
16                 cin>>v>>t;
17                 if(t<0) continue;
18                 else 
19                 {
20                     if(ceil(t+4500*3.6/v)<min) min=t+ceil(4500*3.6/v);
21                 }
22             }
23             cout<<static_cast<long>(min)<<endl;
24     }
25     return 0;
26 }

HDU1445,布布扣,bubuko.com

HDU1445

标签:style   blog   http   color   os   strong   

原文地址:http://www.cnblogs.com/khbcsu/p/3859424.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!