博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU--Elevator(水题)
阅读量:6976 次
发布时间:2019-06-27

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

Elevator

Time Limit: 1000ms   Memory limit: 32768K  有疑问?点这里^_^

题目描写叙述

The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors the elevator will stop, in specified order. It costs 6 seconds to move the elevator up one floor, and 4 seconds to move down one floor. The elevator will stay for 5 seconds at each stop.
For a given request list, you are to compute the total time spent to fulfill the requests on the list. The elevator is on the 0th floor at the beginning and does not have to return to the ground floor when the requests are fulfilled.

输入

There are multiple test cases. Each case contains a positive integer N, followed by N positive numbers. All the numbers in the input are less than 100. A test case with N = 0 denotes the end of input. This test case is not to be processed.

输出

Print the total time on a single line for each test case.

演示样例输入

1 23 2 3 10

演示样例输出

1741
水题。but坑了我一顿,本渣以为这电梯上到顶就会下来不在上去了呢。。

所以一開始开数组做的WA了

 
#include 
#include
#include
#include
#include
using namespace std;int main(){ int n,i,start,x,sum; while(cin>>n) { if(!n)break; sum=0;start=0; for(i=1;i<=n;i++) { cin>>x; if(x>start) sum+=6*(x-start); else sum+=4*(start-x); sum+=5; start=x; } cout<
<

转载地址:http://vxupl.baihongyu.com/

你可能感兴趣的文章
Zookeeper迁移(扩容/缩容)
查看>>
jQuery中的Ajax----03
查看>>
思科生成树命令之debug spanning-tree(本文转载自:www.91ccie.coml
查看>>
精品软件 推荐 瑞星 杀毒软件 安全软件
查看>>
精品软件 推荐 硬盘物理序列号修改专家
查看>>
tomcat简单配置
查看>>
Ansible基础一Playbook(二)
查看>>
MySQL5.6.16二进制源码安装详解及一键安装实现
查看>>
好久没有更新了!
查看>>
Netscaler 认证,访问报http 5000 内部错误
查看>>
Tomcat:Connection reset by peer: socket write error
查看>>
ARP(Accounting Resource Planning)项目感想
查看>>
Linux系统基础-管理之用户、权限管理
查看>>
Nginx(二) 配置与调试
查看>>
A first look at Xync Lync client on iOS iPhone/iPad
查看>>
iphone越狱神器
查看>>
HashSet 详解
查看>>
C++中public、protect和private用法区别
查看>>
LVM逻辑卷的缩减与删除,LVM逻辑卷快照,btrfs文件系统,网络管理
查看>>
git命令
查看>>