hdu1008Elevator elevator pitch范文

Elevator

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K(Java/Others)
Total Submission(s): 24284 Accepted Submission(s):13023

ProblemDescriptionThe highest building in our city hasonly one elevator. A request list is made up with N positivenumbers. The numbers denote at which floors the elevator will stop,in specified order. It costs 6 seconds to move the elevator up onefloor, and 4 seconds to move down one floor. The elevator will stayfor 5 seconds at each stop.

For a given request list, you are to compute the total time spentto fulfill the requests on the list. The elevator is on the 0thfloor at the beginning and does not have to return to the groundfloor when the requests are fulfilled.
hdu1008Elevator elevator pitch范文

InputThere are multiple test cases. Each casecontains a positive integer N, followed by N positive numbers. Allthe numbers in the input are less than 100. A test case with N = 0denotes the end of input. This test case is not to beprocessed.

OutputPrint the total time on a single linefor each test case.

SampleInput1 2 3 2 3 10
SampleOutput17 41题意:你在一楼,电梯上升一楼时间是6秒,下降一楼时间是4秒,每次升降停顿时间是5秒。求总共花费的时间思路:直接求总共上升的楼层数*6+总共下降的楼层数*4+升降的次数*5ac代码:#include<iostream>using namespacestd;int main(){int n,m,i,a,sum;while(cin>>n){if(n==0)break;cin>>m;if(n==1){cout<<6*m+5<<endl;continue;}a=m;sum=6*m;for(i=1;i<n;i++){cin>>m;if(a>m) sum+=4*(a-m);else sum+=6*(m-a);a=m;}sum=sum+5*n;cout<<sum<<endl;}return 0;}

  

爱华网本文地址 » http://www.aihuau.com/a/25101017/336292.html

更多阅读

自我鉴定范文怎么写 精 情况说明怎么写范文

无论是学生还是社会人员,都可能会接触到这种文体,自我鉴定的写法其实在大学里已经被模式化,几乎都是一个套路,但是不同社会环境的人依然会有不同的自我鉴定写法,在这里给大家分享一下自我鉴定范文的写法。自我鉴定范文怎么写 精——第一

情况说明范文 个人情况说明范文

很多人不知道该怎么写情况说明,尤其是在工作中,与上级交流尤其要注意措辞是否适当,表达是否清晰等等。下面我们就来看一则情况说明范文,希望对大家有所帮助。? ? ? ? ? ? ? ? ? ? ? ? ?? xx厂关于xx同志职称情况说明xx市政府办公

出国留学导师推荐信范文三篇 出国留学导师推荐信

出国留学导师推荐信对于申请美国研究生的学生来说是非常关键的,一封具有说服力的导师推荐信对于录取结果是有很大影响作用的。下面给大家分享三篇出国留学导师推荐信范文,供大家参考。  出国留学导师推荐信范文1  您好!我是柳红红

个人销售计划书范文 销售策划方案

? 每个销售人员,在一年的开始或一个时间的开始时,都要对自己的销售工作有一个详细的规划和明确的目标。以下是一份个人销售计划书范文,仅供参考。  在20xx年刚接触这个行业时,在选择客户的问题上走过不少弯路,那是因为对这个行业还不

起诉书的书写格式及范文 民事起诉状模板

起诉书的书写格式及范文——简介我们在日常生活和工作中为了使自己的权益不受到侵害,免不了需要付诸法律来解决的事情。那么一份格式正确的起诉书包括哪些内容呢?起诉书的书写格式及范文——起诉书的正确书写格式及相关内容起诉书的

声明:《hdu1008Elevator elevator pitch范文》为网友零下分享!如侵犯到您的合法权益请联系我们删除