poj 1852 Ants
  3n45YYmVLV9P 2023年11月13日 27 0


Ants


Time Limit: 1000MS

 

Memory Limit: 30000K

Total Submissions: 12661

 

Accepted: 5545


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


Source

悲催的一道题啊~~,maxn和minn刚开始定义为全局变量,错了好几次,,后来又发现没有都初始化为0.。。( ̄o ̄) . z Z( ̄o ̄) . z Z

#include <iostream>
 #include<cstdio>
 #include<algorithm>
 using namespace std;
 int main()
 {
     int n,cas,l,temp;
     cin>>cas;
     for(int i=1;i<=cas;i++)
     {
          cin>>l>>n;
          int minn=0,maxn=0;
          for(int i=1;i<=n;i++)
          {
               cin>>temp;
               minn=max(minn,min(temp,l-temp));
               maxn=max(maxn,max(temp,l-temp));
          }
          cout<<minn<<" "<<maxn<<endl;
     }
     return 0;
 }
【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

  1. 分享:
最后一次编辑于 2023年11月13日 0

暂无评论

推荐阅读
  HE3leaVn7jMN   2023年11月24日   29   0   0 Timei++#include
  HE3leaVn7jMN   2023年11月26日   29   0   0 i++#include
  sX9JkgY3DY86   2023年11月13日   32   0   0 ci控件Text
3n45YYmVLV9P