国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

1008. Elevator (20)

2019-11-11 04:44:37
字體:
供稿:網(wǎng)友

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.

Input Specification:

Each input file contains one test case. Each case contains a positive integer N, followed by N positive numbers. All the numbers in the input are less than 100.

Output Specification:

For each test case, PRint the total time on a single line.

Sample Input: 3 2 3 1 Sample Output: 41

#include<cstdio>const int maxn=110;int a[maxn];int main(){ int n; scanf("%d",&n); for(int i=1;i<=n;i++){ scanf("%d",&a[i]); } a[0]=0; int ans=0; for(int i=1;i<=n;i++){ if(a[i]>a[i-1]){ ans+=(a[i]-a[i-1])*6; }else if(a[i]<a[i-1]){ ans+=(a[i-1]-a[i])*4; } } ans+=n*5; printf("%d/n",ans); return 0; }
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 芜湖市| 米林县| 内黄县| 盖州市| 绩溪县| 天气| 洮南市| 札达县| 西平县| 定州市| 莱芜市| 平阴县| 正安县| 浠水县| 眉山市| 青河县| 海原县| 吉木乃县| 伽师县| 台江县| 双桥区| 马鞍山市| 龙里县| 灵丘县| 大埔县| 娱乐| 湘潭市| 兰州市| 赞皇县| 五常市| 鄢陵县| 邹平县| 简阳市| 五家渠市| 萨嘎县| 长治县| 鄂尔多斯市| 嵊泗县| 波密县| 莎车县| 通渭县|