尺取算法 入门+模板+例题

尺取算法 入门+模板+例题

博客推荐

尺取法原理及模板

https://blog.csdn.net/doubleguy/article/details/81265327

一些入门例题

https://blog.csdn.net/lxt_Lucia/article/details/81091597

模板

这里根据题目POJ 3061来具体实现。

题意是说给你一个有数字组成的序列,找出最短的子串(注意:子串是连续的,子序列可以不连续),使得这个子串的和大于等于S,求子串的长度。

思路:使用尺取法来解决。

#include
#include
#include
#include
#include
#include
#include
#include
#include
typedef long long ll;
using namespace std;
const double esp=1e-6;
const int inf=0x3f3f3f3f;
const int MAXN=1E5+7;
int num[MAXN], n, s;
int main()
{
    int t=0;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d%d", &n, &s);
        for(int i=0; i

你可能感兴趣的:(尺取算法 入门+模板+例题)