• POJ 1852 Ants 思维题 简单题


                      Ants

    Description

    An army of ants walk on a horizontal pole of length l cm, each with a constant speed of 1 cm/s. When a walking ant reaches an end of the pole, it immediatelly falls off it. When two ants meet they turn back and start walking in opposite directions. We know the original positions of ants on the pole, unfortunately, we do not know the directions in which the ants are walking. Your task is to compute the earliest and the latest possible times needed for all ants to fall off the pole.

    Input

    The first line of input contains one integer giving the number of cases that follow. The data for each case start with two integer numbers: the length of the pole (in cm) and n, the number of ants residing on the pole. These two numbers are followed by n integers giving the position of each ant on the pole as the distance measured from the left end of the pole, in no particular order. All input integers are not bigger than 1000000 and they are separated by whitespace.

    Output

    For each case of input, output two numbers separated by a single space. The first number is the earliest possible time when all ants fall off the pole (if the directions of their walks are chosen appropriately) and the second number is the latest possible such time. 

    Sample Input

    2
    10 3
    2 6 7
    214 7
    11 12 7 13 176 23 191
    

    Sample Output

    4 8
    38 207



     1 #include<cstdio>
     2 #include<cmath>
     3 using namespace std;
     4 
     5 int main()
     6 {
     7     int test;
     8 
     9     scanf("%d",&test);
    10 
    11     while(test--)
    12     {
    13         int n,L;
    14         scanf("%d%d",&L,&n);
    15 
    16         int left=L;
    17         int right=0;
    18         int mid=L+1;
    19         double dis_mid=(double)L/2;
    20 
    21         int cur;
    22 
    23         for(int i=1;i<=n;i++)
    24         {
    25             scanf("%d",&cur);
    26 
    27             if(cur<left)
    28                 left=cur;
    29             if(cur>right)
    30                 right=cur;
    31             if(abs(cur-dis_mid)<abs(mid-dis_mid))
    32                 mid=cur;
    33         }
    34 
    35         int min=(L-mid)<mid?(L-mid):mid;
    36         int max=(L-left)>left?(L-left):left;
    37         if(right>max)
    38             max=right;
    39         if(L-right>max)
    40             max=L-right;
    41 
    42         printf("%d %d
    ",min,max);
    43 
    44     }
    45     return 0;
    46 }
    View Code




  • 相关阅读:
    【结对开发】电梯调度 一(从电梯布局分配考虑)需求分析及设计思路。
    【结对开发】求一个整数数组的所有子数组中和的最大值。
    【测试用例选取及异常处理】 之 求一个数组中的最大整数。
    互测测评报告
    绩效考核
    冲刺5
    写个烂android一天到晚活累死,
    冲刺3
    冲刺2
    冲刺1
  • 原文地址:https://www.cnblogs.com/-maybe/p/4470386.html
Copyright © 2020-2023  润新知