尺取法two pointers
作者:互联网
目的:对给定的一个序列,在序列中寻找包含全部需求的、长度最小的一段子序列。一般用来解决具有单调性的区间问题。
时间复杂度:O(n)
https://blog.csdn.net/lxt_lucia/article/details/81091597
自用模板:
poj3061,给定一个序列,使得其和大于或等于S,求最短的子序列长度。
#include<stdio.h> #include<iostream> #define INF 0x3f3f3f3f using namespace std; const int maxn=1e5+10; int main() { int T; scanf("%d",&T); while(T--) { int n,s,a[maxn],st=0,en=0,ans=INF; long long sum=0; scanf("%d%d",&n,&s); for(int i=0;i<n;i++)scanf("%d",&a[i]); while(1) { while(en<n&&sum<s)sum+=a[en++]; if(sum<s)break; //如果右端点移动到区间末尾其和还不大于等于S,结束区间的枚举 ans=min(ans,en-st); sum-=a[st++]; } if(ans==INF)ans=0; printf("%d\n",ans); } return 0; }View Code
poj3320,一本书有P页,每一页都一个知识点,求去最少的连续页数覆盖所有的知识点。
poj2566
poj2739&poj2100
poj2100
洛谷p1638 逛画展
UVA 11572
Atcoder 4142
洛谷 p1102 A-B数对
标签:知识点,int,pointers,two,long,maxn,取法,序列,scanf 来源: https://www.cnblogs.com/myrtle/p/11587022.html