HDU 1008 Elevator

Posted 92#

tags:

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

题解:简单模拟题。

#include<iostream>
#include<stdio.h>
#include<algorithm>
using namespace std;
int main()
{
    int n;
    while(cin>> n && n){
        int sum = 0;
        int pre = 0, x;
        for(int i=0; i<n; i++){
                cin>>x;
                if(x -pre>0){ //up
                     sum += (x-pre)*6;
                }else{ //down
                    sum += (pre-x)*4;
                }
                sum+=5;
                pre =x;
            }
            cout<<sum<<endl;
        }

    return 0;
    }

  

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

Hdu 1008 Elevator

hdu 1008 Elevator

HDU 1008 Elevator

(HDU)1008 -- Elevator(电梯)

PAT1008:Elevator

1008. Elevator