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 }
  • 相关阅读:
    Linux系统管理05-----权限及归属管理
    Linux系统安装管理04----账号管理
    Linux系统管理03-----安装与管理程序
    Zabbix 监控主机
    Zabbix 页面优化
    基于 MHA 的MySQL高可用-CentOS7(理论)
    基于 MHA 的MySQL高可用-CentOS7(实例)
    部署Jumpserver环境
    GNS3连接本地服务器报错
    zabbix 安装部署
  • 原文地址:https://www.cnblogs.com/shixinzei/p/11053048.html
Copyright © 2011-2022 走看看