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
  • 相关阅读:
    【Springboot】Springboot整合Ehcache
    时间戳转化正常的时间格式
    申请抖音企业认证流程
    js与原生进行交互
    vim 高亮
    shell 关于路径查询显示pwd
    shell 关于字符切割 cut
    linux ubuntu 关于vim得一些基本命令
    shell 在终端中打开另一个终端执行命令
    shell 获取时间
  • 原文地址:https://www.cnblogs.com/zhuqiwei-blog/p/8515937.html
Copyright © 2011-2022 走看看