hdu 1008

Posted 果冻0_0

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 1008相关的知识,希望对你有一定的参考价值。

题目意思是:给你N个数字  每个数字表示多少层楼  现在要你从0层楼开始坐电梯  一次按顺序走过这些楼层

      规则是 上楼6秒 ,下楼4秒,每次到达一个楼层停5秒.....

思路:模拟

 

代码如下:(要注意的是 如果电梯没动 也就是temp==0,这也是一种情况.....被坑了..)

#include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;
int main()
{
    int n,floor[105];
    while(scanf("%d",&n)&&n)
    {
        memset(floor,0,sizeof(floor));
        int temp,ans=0;
        for(int i=1; i<=n; i++)
        {
            scanf("%d",&floor[i]);
            temp=floor[i]-floor[i-1];
            if(temp>0)
            {
                ans+=6*temp+5;
            }
            if(temp<0)
            {
                ans+=-4*temp+5;
            }
            if(temp==0)
                ans+=5;
        }
        printf("%d\n",ans);
    }
}

 

以上是关于hdu 1008的主要内容,如果未能解决你的问题,请参考以下文章

杭电女生赛1001 1002 1003 1005 1008 hdu6023 6024 6025 6027 6030

hdu-1008 Elevator

解题报告:hdu1008 Elvator

hdu 1008

Hdu 1008 Elevator

hdu 1008 Elevator