比赛 |
20131130 |
评测结果 |
AAAAAAAAAA |
题目名称 |
参加考试 |
最终得分 |
100 |
用户昵称 |
NVIDIA |
运行时间 |
0.006 s |
代码语言 |
C++ |
内存使用 |
4.09 MiB |
提交时间 |
2015-09-19 20:20:17 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<algorithm>
int n,k,a=0;
int T[989898]={0};
using namespace std;
int main(){
freopen("teststr.in","r",stdin);
freopen("teststr.out","w",stdout);
ios::sync_with_stdio(false);
cin>>n>>k;
int i;
for(i=1;i<=k;i++)
{
cin>>T[i];
}
sort(T+1,T+1+k);
a=max(a,T[1]);
a=max(a,n-T[k]);
for(i=2;i<=k;i++)
{
a=max(a,(T[i]-T[i-1])/2);
}
cout<<a;
return 0;
}