其他分享
首页 > 其他分享> > 1008 Elevator

1008 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.

有一部电梯,最开始停在0层,上一层需要6s,下一层需要4s, 每次到达当前楼层还需要停5s,。现在给出要去的楼层顺序,求总共需要花费多少时间

#include <iostream>
using namespace std;
int main()
{
  int n, b = 0, time = 0, c = 0;
  cin>>n;
  for(int i = 0; i < n; i++)
  {
    int a;
    cin>>a;
    if(b < a)
    {
      time = (a - b) * 6 + 5;
    }
    else
    {
      time = (b - a) * 4 + 5;
    }
    c += time;
    b = a;
  }
  cout<<c;
  return 0;
}
 
 

标签:floor,int,1008,list,elevator,numbers,Elevator,time
来源: https://blog.csdn.net/qq_61724470/article/details/122514034