记录编号 |
31005 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[USACO Nov07] 奶牛探险 |
最终得分 |
100 |
用户昵称 |
Truth.Cirno |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.051 s |
提交时间 |
2011-11-01 13:54:23 |
内存使用 |
0.37 MiB |
显示代码纯文本
#include <cstdio>
using namespace std;
int main(void)
{
freopen("explore.in","r",stdin);
freopen("explore.out","w",stdout);
const int NUM=100000;
int i,j,n,c=-1,tim,temp;
bool hash[200001]={false};
scanf("%d %d\n",&tim,&n);
for (i=0;i<n;i++)
{
scanf("%d\n",&temp);
temp+=NUM;
hash[temp]=true;
}
temp=NUM;
for (i=NUM,j=NUM;tim>=0&&i>=0;i--,j++)
{
if (hash[i])
{
tim-=temp-i;
temp=i;
c++;
}
else if (hash[j])
{
tim-=j-temp;
temp=j;
c++;
}
}
if (tim>=0)
c++;
printf("%d\n",c);
fclose(stdin);
fclose(stdout);
return(0);
}