PAT (Advanced Level) Practice 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.

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

思路:模拟就完事儿,每上一层就+6,每下一层+4,每次再额外+5停留时间,增加一个t记录上次的楼层,判断是上升还是下降。
 1 #include <stdio.h>
 2 int main()
 3 {
 4     int n,x;
 5     while(scanf("%d",&n)!=EOF){
 6         int sum=0;
 7         int t=0;
 8         for(int i=0;i<n;i++){
 9             scanf("%d",&x);
10             if(x>t){
11                 sum+=(x-t)*6;
12                 t=x;
13             }else{
14                 sum+=(t-x)*4;
15                 t=x;
16             }
17             sum+=5;
18         }
19         printf("%d\n",sum);
20     }
21     return 0;
22 }

 

posted @ 2019-06-19 18:07  wydxry  阅读(310)  评论(0编辑  收藏  举报
Live2D