(白书训练计划)UVa 11572 Unique Snowflakes(窗体滑动法)
Posted lxjshuju
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(白书训练计划)UVa 11572 Unique Snowflakes(窗体滑动法)相关的知识,希望对你有一定的参考价值。
题目地址:UVa 11572
这样的方法曾经接触过,定义两个指针,不断从左向右滑动,推断指针内的是否符合要求。
这个题为了能高速推断是否有这个数,能够用STL中的set。
代码例如以下:
#include <iostream> #include <cstdio> #include <string> #include <cstring> #include <stdlib.h> #include <math.h> #include <ctype.h> #include <queue> #include <map> #include <set> #include <algorithm> using namespace std; int a[1100000]; int main() { int t, n, l, r, i, max1; scanf("%d",&t); while(t--) { scanf("%d",&n); max1=-1; for(i=0;i<n;i++) { scanf("%d",&a[i]); } l=r=0; set<int>q; while(r!=n) { while(q.count(a[r])) { q.erase(a[l++]); } q.insert(a[r++]); if(max1<r-l) max1=r-l; } printf("%d\n",max1); } return 0; }
以上是关于(白书训练计划)UVa 11572 Unique Snowflakes(窗体滑动法)的主要内容,如果未能解决你的问题,请参考以下文章
Unique Snowflakes UVA - 11572 (离散化+尺取法)
Uva11572-Unique Snowflakes(滑动窗口)