博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu1008Elevator
阅读量:5964 次
发布时间:2019-06-19

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

#include <iostream>

using namespace std;
int
main(int argc, char *argv[])
{
    int
n;
    int
a;
    while
(cin>>n)
    {
   
if
(n>0)
        {
        int
i=0;
        int
s=0;
        while
(n--)
        {
            cin>>a;
            if
(i<a)
            {
                s+=6*(a-i);
                s+=5;
                i=a;
            }
            else
            {
                s+=4*(i-a);
                s+=5;
                i=a;
            }
           
        }
            cout<<s<<endl;
    }
    else break
;
    }
        return
0;
}

转载于:https://www.cnblogs.com/beibeibao/archive/2013/04/02/2995106.html

你可能感兴趣的文章
loadrunner-2-8HTML和URL模式
查看>>
RabbitMQ封装实战
查看>>
SQL Server VALUES 使用一记住
查看>>
原码、反码、补码、移码
查看>>
js禁止网页使用右键
查看>>
javascript数学运算符
查看>>
eclipse安装Run-Jetty-Run插件,修改实时生效
查看>>
UIGestureRecognizer
查看>>
敏捷开发方法综述
查看>>
天。鬼。法
查看>>
linux tcp中time_wait
查看>>
shuff打乱排序
查看>>
LC.155. Min Stack(非优化,两个stack 同步 + -)
查看>>
Add Two Numbers
查看>>
Asp.net技巧:gridview获取当前行索引的方法
查看>>
让 vim 在按ESC时自动保存
查看>>
git配置别名
查看>>
SpringMVC配置文件
查看>>
划分数系列问题
查看>>
springboot整合jersey
查看>>