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 }
  • 相关阅读:
    使用Oracle Wrap工具加密你的代码
    Oracle wrap 和 unwrap( 加密与解密) 说明
    oracle_base和oracle_home 的区别
    Oracle的SOME,ANY和ALL操作
    Oracle自主事务处理
    oracle读写文件--利用utl_file包对磁盘文件的读写操作
    Oracle中序列的使用
    INSTEAD OF触发器
    DBMS_LOB包的使用
    Oracle入门4-REF Cursor
  • 原文地址:https://www.cnblogs.com/shixinzei/p/11053048.html
Copyright © 2011-2022 走看看