1008 Elevator (20)
题目描述:
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.
输入格式:
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.输出格式:
For each test case, print the total time on a single line.
解题方法:
这道题就是简单的计算问题,没有任何难度
程序:
#include <stdio.h>
int main(int argc, char const *argv[])
{
int sum = 0, N, level = 0, input;
scanf("%d", &N);
sum += N*5;
for (int i = 0; i < N; i++)
{
scanf("%d", &input);
if (input > level)
sum += (input-level) * 6;
else
sum += (level-input) * 4;
level = input;
}
printf("%d\n", sum);
return 0;
}
如果对您有帮助,帮忙点个小拇指呗~
本文介绍了一个简单的电梯调度算法问题,该算法用于计算完成一系列楼层请求所需的总时间。通过给出的C语言程序实现,可以理解如何根据楼层间的上下移动来计算时间和停留时间。
485

被折叠的 条评论
为什么被折叠?



