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

本文共 1467 字,大约阅读时间需要 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<
<

转载于:https://www.cnblogs.com/lytwajue/p/6721358.html

你可能感兴趣的文章
64bit CPU 知识 (IA32,IA64,EM64T,AMD64)
查看>>
结构体 枚举
查看>>
srtlen实现以及与sizeof的比较
查看>>
linux+win7双系统重装win7修复grub的办法
查看>>
让应用在横屏模式下启动
查看>>
Intent传递list集合时异常解决
查看>>
登录验证码demo-java
查看>>
日常练习 1.0
查看>>
php集成环境
查看>>
Ubuntu下的负载均衡Web集群配置
查看>>
Create a site by Google Site - All Free
查看>>
Fragment 的基本使用
查看>>
mvc的个别对输入数据的验证
查看>>
autoit学习安装说明及例子
查看>>
jQuery控制form表单元素聚焦
查看>>
wpf+.net 4.5 surface2.0 = 异步多点触控 时间轴 part1
查看>>
[android]不解锁刷机
查看>>
Ural1519 Formula 1
查看>>
SQL Server 收缩日志
查看>>
安装ubuntu10.10后,如何配置一个Apache+MySQL+PHP环境
查看>>