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
  • 相关阅读:
    java常见异常
    实现两个整数变量交换
    java抽象类与接口
    Java内部类用法
    单例模式
    easyUI下拉列表点击事件的使用
    Java中使用HttpRequest获取用户真实IP地址端口
    js-easyUI格式化时间
    1124
    ACM算法
  • 原文地址:https://www.cnblogs.com/zhuqiwei-blog/p/8515937.html
Copyright © 2011-2022 走看看