• 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




  • 相关阅读:
    IBM斥资340亿美元收购红帽
    单例模式讨论篇:单例模式与垃圾回收
    Xshell拖拽上传文件插件
    理想的程序员
    Android学习之路
    springboot更改启动logo,佛祖保佑 ,永不宕机 , 永无BUG
    Java多线程实现的四种方式
    IntelliJ IDEA
    Jrebel最新激活破解方式(持续更新)
    PyCharm 2018.2.4永久破解办法
  • 原文地址:https://www.cnblogs.com/-maybe/p/4470386.html
Copyright © 2020-2023  润新知