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




  • 相关阅读:
    python基础学习-socket套接字的应用
    python基础学习-网络编程(二)
    python基础学习-网络编程(一)
    python基础学习-异常处理
    作业0313
    作业3.11
    作业 3.10
    作业03
    day64——orm单表操作/多表操作
    day63——CBV内部原理、过滤器、标签、inclusion_tag、模版的继承
  • 原文地址:https://www.cnblogs.com/-maybe/p/4470386.html
Copyright © 2011-2022 走看看