1. 程式人生 > >解題報告:hdu1008 Elvator

解題報告:hdu1008 Elvator

sin 報告 ace turn code col 發生 ret i++

2017-09-07 19:30:22

writer:pprp

比較順利,最近生活出現了各種問題,

發生了很多矛盾,我要耐下心來,最重要的不是努力不努力,而是選擇

希望我能處理好人際關系還有學業上的壓力。

/*
@theme: hdu1008 Elevator
@writer:pprp
@begin:21:37
@end:19:30
@declare:水題
@data:2017/9/7
*/

#include <bits/stdc++.h>

using namespace std;

int main()
{
    //freopen("in.txt","r",stdin);
    int n;
    
while(cin >> n && n) { int before = 0,now = 0; int ans = 0; for(int i = 0; i < n ; i++) { cin >> now; if(now > before) { ans += 6 * (now - before); } else { ans
+= 4 * (before - now); } before = now; } ans += 5 * n; cout << ans << endl; } return 0; }

解題報告:hdu1008 Elvator