zoukankan      html  css  js  c++  java
  • 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<cstdio>
     2 #include<iostream>
     3 using namespace std;
     4 int main(){
     5     int N, temp, ans = 0, floor = 0;
     6     scanf("%d", &N);
     7     for(int i = 0; i < N; i++){
     8         scanf("%d", &temp);
     9         if(floor < temp){
    10             ans += (temp - floor) * 6;
    11             ans += 5;
    12             floor = temp;
    13         }else if(floor == temp){
    14             ans += 5;
    15         }else{
    16             ans += (floor - temp) * 4;
    17             ans += 5;
    18             floor = temp;
    19         }
    20     }
    21     printf("%d", ans);
    22     cin >> N;
    23     return 0;
    24 }
    View Code
  • 相关阅读:
    javaScript设计模式:装饰模式
    搭建自动签到服务
    Gmail邮箱注册
    springcloud3(六) 服务降级限流熔断组件Resilience4j
    PCB
    行业_激光
    Git设置Http代理,克隆github上的代码
    工控机与运动控制卡
    锂电池生产工艺
    PCB涂胶工艺
  • 原文地址:https://www.cnblogs.com/zhuqiwei-blog/p/8515937.html
Copyright © 2011-2022 走看看