博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[POJ 3061] Subsequence
阅读量:5132 次
发布时间:2019-06-13

本文共 1207 字,大约阅读时间需要 4 分钟。

Subsequence
TL: 1s, ML: 32Mb

Description

A sequence of N positive integers (10 < N < 100 000), each of them less than or equal 10000, and a positive integer S (S < 100 000 000) are given. Write a program to find the minimal length of the subsequence of consecutive elements of the sequence, the sum of which is greater than or equal to S.

Input

The first line is the number of test cases. For each test case the program has to read the numbers N and S, separated by an interval, from the first line. The numbers of the sequence are given in the second line of the test case, separated by intervals. The input will finish with the end of file.

Output

For each the case the program has to print the result on separate line of the output file.if no answer, print 0.

Sample Input

210 155 1 3 5 10 7 4 9 2 85 111 2 3 4 5

Sample Output

23

Source

【题解】

尺取法应用第二弹,随便搞都能A系列

1 #include
2 using namespace std; 3 int testc,n,S,a[100010],rr; 4 int main() { 5 scanf("%d",&testc); 6 while(testc--) { 7 scanf("%d%d",&n,&S);rr=n+1; 8 for (int i=0;i
n) rr=0;17 printf("%d\n",rr);18 }19 }
View Code

 

转载于:https://www.cnblogs.com/TonyNeal/p/poj3061.html

你可能感兴趣的文章
Java泛型的基本使用
查看>>
1076 Wifi密码 (15 分)
查看>>
noip模拟赛 党
查看>>
bzoj2038 [2009国家集训队]小Z的袜子(hose)
查看>>
Java反射机制及其Class类浅析
查看>>
Postman-----如何导入和导出
查看>>
移动设备显示尺寸大全 CSS3媒体查询
查看>>
图片等比例缩放及图片上下剧中
查看>>
background-clip,background-origin
查看>>
【Linux】ping命令详解
查看>>
对团队成员公开感谢博客
查看>>
java学习第三天
查看>>
django+uwsgi+nginx+sqlite3部署+screen
查看>>
浅谈项目需求变更管理
查看>>
经典算法系列一-快速排序
查看>>
设置java web工程中默认访问首页的几种方式
查看>>
ASP.NET MVC 拓展ViewResult实现word文档下载
查看>>
8、RDD持久化
查看>>
第二次团队冲刺--2
查看>>
VMware Tools安装
查看>>