比赛 |
20161115 |
评测结果 |
WWWWWWWWWW |
题目名称 |
军队 |
最终得分 |
0 |
用户昵称 |
Magic_Sheep |
运行时间 |
2.756 s |
代码语言 |
C++ |
内存使用 |
0.70 MiB |
提交时间 |
2016-11-15 10:25:15 |
显示代码纯文本
#include<cstdio>
#include<iostream>
#define LL long long
using namespace std;
const int maxn=100010;
int n,m,l,r,res;
int a[maxn];
LL gcd(LL x,LL y)
{
if(y==0) return x;
else return gcd(y,x%y);
}
bool check(int lim)
{
for(int i=1;i<=n;i++)
{
LL lcm=a[i],cnt=a[i];bool ok=false;
for(int j=i+1;j<=i+lim-1;j++)
{
if(gcd(a[j],lcm)==1)
{
cnt+=a[j];lcm*=a[j];
}
else
{
ok=true;break;
}
}
if(ok) continue;
if(cnt>=m) return true;
}
return false;
}
int main()
{
freopen("tarmy.in","r",stdin);
freopen("tarmy.out","w",stdout);
scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++) scanf("%d",&a[i]);
l=0,r=n;
while(r>=l)
{
int mid=(l+r)>>1;
if(check(mid)) res=mid,r=mid-1;
else l=mid+1;
}
printf("%d",res);
return 0;
}
/*
5 14
4 5 12 3 2
*/