PAT甲级——A1008 Elevator

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


太简单了,竟然是按要求的顺序进行升降,一点都没有说进行时间优化?!
 1 #include <iostream>
 2 using namespace std;
 3 
 4 int main()
 5 {
 6     int N;
 7     cin >> N;
 8     int pre = 0, now,sum = 5 * N;//上一次停留在哪?现在要去的楼层,时间初始为要在 每一层的总停留时间
 9     for (int i = 0; i < N; ++i)
10     {
11         cin >> now;
12         if ((now - pre) > 0)//
13             sum += (now - pre) * 6;
14         else if ((now - pre) < 0)//
15             sum += (pre - now) * 4;
16         pre = now;//更新楼层
17     }
18     cout << sum << endl;
19     return 0;
20 }

 

posted @ 2019-07-11 22:03  自由之翼Az  阅读(175)  评论(0编辑  收藏  举报