博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 1852 Ants
阅读量:5319 次
发布时间:2019-06-14

本文共 2073 字,大约阅读时间需要 6 分钟。

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

210 32 6 7214 711 12 7 13 176 23 191

Sample Output

4 838 207 大意是说杆上有蚂蚁,只知道离左边的位置,不知道方向。给定杆长,问最短和最长落下的时间。 代码如下:
1 #include 
2 #include
3 #include
4 #include
5 using namespace std; 6 7 int n; 8 int main(int argc, char const *argv[]) 9 {10 while(scanf("%d",&n) != EOF) {11 while(n--) {12 int len, m;13 int min0 = -1, max0 = -1;14 scanf("%d %d",&len,&m);15 while(m--) {16 int p;17 scanf("%d",&p);18 min0 = max(min0, min(p, len-p));19 max0 = max(max0,max(p,len-p));20 }21 printf("%d %d\n",min0, max0);22 23 }24 }25 }

 

转载于:https://www.cnblogs.com/jasonJie/p/5787760.html

你可能感兴趣的文章
孤荷凌寒自学python第五十天第一次接触NoSql数据库_Firebase
查看>>
函数返回类型
查看>>
配置CLion作为Qt5开发环境
查看>>
JS搜索菜单实现
查看>>
.net程序和管理员权限的一些事
查看>>
Ubuntu 14.04下使用crontab定时弹出窗口
查看>>
SpringSecurity之记住我功能的实现
查看>>
三维数组中求某位地址
查看>>
node05-fs
查看>>
二分查找-binarySearch
查看>>
MVC自定义验证信息
查看>>
【原创】关于lxml读取文件后不能正常输出中文
查看>>
Python Open Source Project List
查看>>
第六次作业
查看>>
基于AngularJS的前端架构(上)
查看>>
Django的数据模型层实现特点
查看>>
判断鼠标向上滚动或者向上滚动触发不同的事件
查看>>
UML用例图
查看>>
Windows平台下不同版本SVN对比
查看>>
在微服务中使用领域事件
查看>>