首页 > 代码库 > poj 3061
poj 3061
尺取法板子
#include <iostream> #include <cstring> #include <cstdio> #include <algorithm> using namespace std; const int maxn=100000+10; int a[maxn]; int t,n,S; int chiqu() { int t=0,s=0,sum=0; int ans=n+1; while(1) { while(t<n&&sum<S) { sum+=a[t++]; } if(sum<S) break; ans=min(ans,t-s); sum-=a[s++]; } if(ans>n) ans=0; return ans; } int main() { scanf("%d",&t); while(t--) { scanf("%d%d",&n,&S); for(int i=0;i<n;i++) scanf("%d",&a[i]); printf("%d\n",chiqu()); } return 0; }
poj 3061
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。