zoukankan      html  css  js  c++  java
  • PAT (Advanced Level) Practice 1008 Elevator (20 分) (模拟)

    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

    思路:模拟就完事儿,每上一层就+6,每下一层+4,每次再额外+5停留时间,增加一个t记录上次的楼层,判断是上升还是下降。
     1 #include <stdio.h>
     2 int main()
     3 {
     4     int n,x;
     5     while(scanf("%d",&n)!=EOF){
     6         int sum=0;
     7         int t=0;
     8         for(int i=0;i<n;i++){
     9             scanf("%d",&x);
    10             if(x>t){
    11                 sum+=(x-t)*6;
    12                 t=x;
    13             }else{
    14                 sum+=(t-x)*4;
    15                 t=x;
    16             }
    17             sum+=5;
    18         }
    19         printf("%d
    ",sum);
    20     }
    21     return 0;
    22 }
  • 相关阅读:
    JavaScript的正则表达式的基础
    运用JS判断代码可以参考学习
    调用百度地图代码
    运用了css,js
    中国地图(Highmaps)
    Centos
    代理模式【 动态代理与静态代理】
    java集合 collection-list-LinkedList 模拟一个堆栈或者队列数据结构。
    java集合 collection-list-LinkedList
    java集合 collection-list-vector
  • 原文地址:https://www.cnblogs.com/wydxry/p/11053048.html
Copyright © 2011-2022 走看看