zoukankan      html  css  js  c++  java
  • Codeforces Round #596 (Div. 2, based on Technocup 2020 Elimination Round 2) B2. TV Subscriptions (Hard Version)

    链接:

    https://codeforces.com/contest/1247/problem/B2

    题意:

    The only difference between easy and hard versions is constraints.

    The BerTV channel every day broadcasts one episode of one of the k TV shows. You know the schedule for the next n days: a sequence of integers a1,a2,…,an (1≤ai≤k), where ai is the show, the episode of which will be shown in i-th day.

    The subscription to the show is bought for the entire show (i.e. for all its episodes), for each show the subscription is bought separately.

    How many minimum subscriptions do you need to buy in order to have the opportunity to watch episodes of purchased shows d (1≤d≤n) days in a row? In other words, you want to buy the minimum number of TV shows so that there is some segment of d consecutive days in which all episodes belong to the purchased shows.

    思路:

    双指针遍历。

    代码:

    #include <bits/stdc++.h>
    typedef long long LL;
    using namespace std;
     
    const int MAXN = 2e5+10;
     
    int Vis[MAXN*10];
    int Day[MAXN];
    int n, k, d;
     
    int main()
    {
        ios::sync_with_stdio(false);
        int t;
        scanf("%d", &t);
        while (t--)
        {
            scanf("%d%d%d", &n, &k, &d);
            for (int i = 1;i <= n;i++)
                scanf("%d", &Day[i]);
            for (int i = 1;i <= n;i++)
                Vis[Day[i]] = 0;
            int res = k, tmp = 0;
            for (int i = 1;i <= d;i++)
            {
                if (Vis[Day[i]] == 0)
                    tmp++;
                Vis[Day[i]]++;
            }
            res = min(res, tmp);
            for (int i = d+1;i <= n;i++)
            {
                if (Vis[Day[i-d]] == 1)
                    tmp--;
                Vis[Day[i-d]]--;
                if (Vis[Day[i]] == 0)
                    tmp++;
                Vis[Day[i]]++;
                res = min(res, tmp);
            }
            printf("%d
    ", res);
        }
     
        return 0;
    }
    
  • 相关阅读:
    看到关于java资料比较全的,自己收藏
    ie6下pnghack——css方案
    git基本操作
    购物车功能实现
    jquery学习:获取位置position(),offset(),scrollTop困惑
    Datax3.0使用说明
    Scala字符串操作
    Scala中class、object、case class、case object区别
    Scala构造函数
    scala数组操作
  • 原文地址:https://www.cnblogs.com/YDDDD/p/11772261.html
Copyright © 2011-2022 走看看