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
  • 相关阅读:
    2019 SDN上机第5次作业
    hdu 2553 N皇后问题(递归)
    百练oj 2766 最大子矩阵和
    POJ 1664 放苹果
    POJ 3617 Best Cow Line(贪心)
    HDU 2013 ACM/ICPC Asia Regional Hangzhou Online ------ Zhuge Liang's Mines
    HDU 4712 Hamming Distance (随机算法)
    HDU 1171 Big Event in HDU
    HDU 1085 Holding Bin-Laden Captive!
    HDU 1028 母函数
  • 原文地址:https://www.cnblogs.com/zhuqiwei-blog/p/8515937.html
Copyright © 2011-2022 走看看