• PAT甲级——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 <iostream>
     2 using namespace std;
     3 
     4 int main()
     5 {
     6     int N;
     7     cin >> N;
     8     int pre = 0, now,sum = 5 * N;//上一次停留在哪?现在要去的楼层,时间初始为要在 每一层的总停留时间
     9     for (int i = 0; i < N; ++i)
    10     {
    11         cin >> now;
    12         if ((now - pre) > 0)//
    13             sum += (now - pre) * 6;
    14         else if ((now - pre) < 0)//
    15             sum += (pre - now) * 4;
    16         pre = now;//更新楼层
    17     }
    18     cout << sum << endl;
    19     return 0;
    20 }
  • 相关阅读:
    Exchange这东东…
    下午解决了一个问题
    PDC每日视频
    Delphi.net的IDE和C#Builder是相同的
    开始把准备把Exchange的一些基本操作和设置与SharePoint结合起来
    这两天忙得焦头烂额
    一个在.net下进行用户模拟的类
    SharePoint的相关链接
    今天才知有一个CollectionBase类,惭愧
    【博客堂杯征文】从服务员到程序员
  • 原文地址:https://www.cnblogs.com/zzw1024/p/11173076.html
Copyright © 2020-2023  润新知