hdu1008
Posted 王坤1993
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu1008相关的知识,希望对你有一定的参考价值。
//c++
//
#include
using namespace std;
int main(){
int n,j,t,start;
while (cin >> n,n){
start =0;
t = 0;
while(n--){
cin >> j;
if (j>start){
t += 6*(j-start);
}
else if (j < start){
t += 4 *(start-j);
}
start = j;
t +=5;
}
cout << t <<endl;
}
return 0;
}
以上是关于hdu1008的主要内容,如果未能解决你的问题,请参考以下文章