P1638 逛画展(直尺法)

Posted alingmaomao

tags:

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

这道题是直尺法的模板题:

  

#include<iostream>
using namespace std;
const int maxn = 1e6 + 5;
const int M = 2e3 + 5;
int n, m, a[maxn], vis[M];

int main(){
    cin >> n >> m;
    for (int i = 0; i < n; ++i)cin >> a[i];
    int st = 0, en = 0, num = 0, res = n, l = 1, r = n;
    while (1){
        while (en < n&&num < m){
            if (vis[a[en++]]++ == 0)num++;
        }
        if (num < m)break;
        if (res>en - st){ res = en - st; l = st + 1; r = en; }
        if (--vis[a[st++]] ==0 )num--;
    }
    cout << l << " " << r << endl;
}

 

以上是关于P1638 逛画展(直尺法)的主要内容,如果未能解决你的问题,请参考以下文章

P1638 逛画展

逛画展

Luogu1638逛画展

luogu_P1638 逛画展

逛画展

生日礼物