/* Copyright (c) 2014, 烟台大学计算机学院
* All rights reserved.
* 文件名称:test.cpp
* 作者:陈丹妮
* 完成日期:2015年 1 月 26 日
* 版 本 号:v1.0
*
* 问题描述: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.
*/
#include <iostream>
using namespace std;
int main()
{
int N,a[50],i,s;
while(cin>>N&&N!=0)
{
s=0;
for(i=0;i<N;i++)
cin>>a[i];
s=a[0]*6;
for(i=1;i<N;i++)
{
if(a[i]>a[i-1])
s=s+(a[i]-a[i-1])*6;
else
s=s+(a[i-1]-a[i])*4;
}
s=s+5*N;
cout<<s<<endl;
}
return 0;
}
心得体会:继续进步,努力,加油!