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




  • 相关阅读:
    JavaScript相关知识
    JQ定义
    将博客搬至CSDN
    javascript权威指南笔记(第6章 对象)
    高性能javascript(第一章 加载和运行)
    javascript高级程序设计笔记(第4章 变量、作用域和内存问题)
    浏览器加载渲染HTML、DOM、CSS、 javascript、image、flash、iframe、src属性等资源的顺序总结
    mac 快捷键
    javascript的执行顺序
    javascript高级程序设计笔记(第1章~第3章)
  • 原文地址:https://www.cnblogs.com/-maybe/p/4470386.html
Copyright © 2011-2022 走看看