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
  • 相关阅读:
    POJ NOI MATH-7650 不定方程求解
    POJ NOI MATH-7656 李白的酒
    POJ NOI MATH-7654 等差数列末项计算
    POJ NOI MATH-7827 质数的和与积
    POJ NOI MATH-7830 求小数的某一位
    POJ NOI MATH-7833 幂的末尾
    POJ NOI MATH-7829 神奇序列求和
    POJ NOI MATH-7826 分苹果
    UVALive5661 UVA668 ZOJ2037 Parliament
    POJ1032 Parliament
  • 原文地址:https://www.cnblogs.com/zhuqiwei-blog/p/8515937.html
Copyright © 2011-2022 走看看