记录编号 83633 评测结果 AAAAAAAAAA
题目名称 [USACO Mar]参加考试 最终得分 100
用户昵称 Gravatardigital-T 是否通过 通过
代码语言 C++ 运行时间 0.006 s
提交时间 2013-12-04 22:03:31 内存使用 0.33 MiB
显示代码纯文本
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<vector>
using namespace std;
int N,K,t[10001];
int main()
{
	freopen("teststr.in","r",stdin);
	freopen("teststr.out","w",stdout);
	scanf("%d%d",&N,&K);
	for(int i=1;i<=K;i++)
		scanf("%d",&t[i]);
	sort(t+1,t+K+1);
	int temp;
	temp=t[2]-t[1];
	for(int i=3;i<=K;i++)
		temp=max(temp,t[i]-t[i-1]);
	int ans=max(t[1],N-t[K]);
	ans=max(ans,temp/2);
	printf("%d\n",ans);
	return 0;
}