PAT 1008. Elevator (20)
发布日期:2021-05-09 04:20:27 浏览次数:10 分类:博客文章

本文共 1208 字,大约阅读时间需要 4 分钟。

1008. Elevator (20)

时间限制
400 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

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 
using namespace std;int main() { int n; int next,cnt=0; int time=0; scanf("%d",&n); while(n--) { scanf("%d",&next); if(next>cnt) time+=(next-cnt)*6; else time+=(cnt-next)*4; time+=5; cnt=next; }; printf("%d\n", time); return 0;}

上一篇:PAT 1006. Sign In and Sign Out (25)
下一篇:NYOJ 2357: 插塔憋憋乐 贪心

发表评论

最新留言

路过,博主的博客真漂亮。。
[***.116.15.85]2025年03月31日 18时32分33秒