记录编号 |
105094 |
评测结果 |
AAAAAWAWWA |
题目名称 |
[POJ1852]蚂蚁 |
最终得分 |
70 |
用户昵称 |
cstdio |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.815 s |
提交时间 |
2014-06-11 08:53:58 |
内存使用 |
0.22 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
using namespace std;
void work(void){
int L,N,x;
int mx=0,mn=0;
scanf("%d%d",&L,&N);
for(int i=1;i<=N;i++){
scanf("%d",&x);
int a=max(x,L-x),b=min(x,L-x);
mx=max(mx,a);
mn=max(mn,b);
}
printf("%d %d\n",mn,mx);
}
int main(){
freopen("pojants.in","r",stdin);
freopen("pojants.out","w",stdout);
int T;
scanf("%d",&T);
while(T--) work();
return 0;
}