zoukankan      html  css  js  c++  java
  • 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




  • 相关阅读:
    JavaUtil_04_验证码生成器
    Java微信公众平台开发_02_启用服务器配置
    Log4j2_学习_01_Log4j 2使用教程
    Java_Time_01_获取当前时间
    Eclipse_配置_00_资源帖
    Eclipse_插件_02_jd-eclipse插件的安装
    noip模拟题题解集
    小结:高斯消元
    10月刷题总结
    【vijos】1892 树上的最大匹配(树形dp+计数)
  • 原文地址:https://www.cnblogs.com/-maybe/p/4470386.html
Copyright © 2011-2022 走看看