尺取法

Posted sweetlittlebaby

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了尺取法相关的知识,希望对你有一定的参考价值。

poj3061

尺取法裸题,维护动态数组即可 ,l,r,sum,ans;

代码:

#include <cstdio>  
#include <algorithm>  
#include <cstring>  
#define MAX 100005  
#define LL long long  
#define INF 0x3f3f3f3f  
  
using namespace std;  
LL a[100010];  
int n, t, ans = INF;  
LL sum, s;  
  
int main()  
{  
    scanf("%d", &t);  
    while (t--){  
        scanf("%d %I64d", &n, &s);  
        for (int i = 0; i < n; i++) scanf("%I64d", a+i);  
        int l = 0, r = 0;  
        ans = INF; sum = 0;  
        while (1){  
            while (r<n && sum<s) sum += a[r++];  
            if (sum < s) break;  
            ans = min(ans, r-l);  
            sum -= a[l++];  
        }  
        if (ans == INF) ans = 0;  
        printf("%d
", ans);  
    }  
    return 0;
}


poj3320:
这个题理解题意有点难,
主要就是说,找一段连续区间让此区间覆盖所有的不同的a[i];
(map+set+尺取)
代码:
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <iostream>
#include <algorithm>
#include <map>
#include <set>
typedef long long LL;
using namespace std;
const int inf=0x3f3f3f;
const int maxn = 1000010;

int a[maxn];
map<int ,int> mp;
set<int> s;

int main()
{
    int n;
    scanf("%d",&n);
    for(int i=0; i<n; i++)
    {
        scanf("%d",&a[i]);
        s.insert(a[i]);
    }
    int m=s.size();
    int l=0,r=0,ans=inf,sum=0;
    while(1)
    {
        while(r<n&&sum<m)
            {
            if(mp[a[r++]]++==0)
              sum++;
              }
        //cout<<sum<<" "<<r<<endl;
        //for(map<int,int>::iterator it=mp.begin(); it!=mp.end(); it++)
            //cout<<it->first<<" "<<it->second<<endl;
        if(sum<m) break;
        ans=min(ans,r-l);
        if(--mp[a[l++]]==0) sum--;
    }
    printf("%d
",ans);
    return 0;
}
 

 

 

以上是关于尺取法的主要内容,如果未能解决你的问题,请参考以下文章

尺取法 poj 2566

poj3320(尺取法)

poj2739(尺取法+质数筛)

51nod1127(尺取法)

Codeforces 1156C 尺取法 / 二分

poj3061(尺取法)