Codeforces Round #116 E-Cubes 180E

本文介绍了一种O(n)级别的算法,用于解决一个简单的计算机游戏问题,即通过删除一定数量的方块来最大化连续相同颜色方块的得分。该算法借鉴了maximum sum问题的思路,并通过线段树进行区间信息统计。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

E. Cubes
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Let's imagine that you're playing the following simple computer game. The screen displaysnlined-up cubes. Each cube is painted one ofmcolors. You are allowed to delete not more thankcubes (that do not necessarily go one after another). After that, the remaining cubes join together (so that the gaps are closed) and the system counts the score. The number of points you score equals to the length of the maximum sequence of cubes of the same color that follow consecutively. Write a program that determines the maximum possible number of points you can score.

Remember, you may delete no more thankany cubes. It is allowed not to delete cubes at all.

Input

The first line contains three integersn,mandk(1 ≤ n ≤ 2· 105, 1 ≤ m ≤ 105, 0 ≤ k < n). The second line containsnintegers from1tom— the numbers of cube colors. The numbers of colors are separated by single spaces.

Output

Print the maximum possible number of points you can score.

Sample test(s)
input
10 3 2
1 2 1 1 3 2 1 1 2 2
output
4


因为数据量达到了10^5,所以要O(n)或是O(nlogn)级别的算法才能过,这道题要做的是对区间上信息的统计,所以用线段树是可以做的,不过感觉这个问题和曾经遇到过的maximum sum(http://poj.org/problem?id=2479)有些相似,所以可能会有类似的解法,事实证明确实有O(n)的算法,思想和maximum sum的思想类似,所以建议先去看看maximum sum。

代码:

#include<cstdio>
#define MAX 200001

int last[MAX],next[MAX],max[MAX],input[MAX],sum[MAX],rec[MAX];

int main()
{
    int n,m,k;
    scanf("%d%d%d",&n,&m,&k);
    for(int i=1;i<=n;i++) scanf("%d",&input[i]);
    for(int i=1;i<=n;i++)
    {
         int color=input[i];
         if(input[i]!=input[i-1])
         {
              next[last[color]]=i;
              last[color]=i;
         }
         sum[color]++;
         rec[i]=sum[color];
    }
    for(int i=0;i<=m;i++) last[i]=0;
    for(int i=1;i<=n;i++) if(last[input[i]]==0) last[input[i]]=i;
    for(int i=1;i<=n;i++)
    {
         int color=input[i];
         int same_color;
         while(true)
         {
              int total_color=i-last[color]+1;
              same_color=rec[i]-rec[last[color]]+1;
              int dis=total_color-same_color;
              if(dis<=k) break;
              last[color]=next[last[color]];
         }
         if(same_color>max[color]) max[color]=same_color;
    }
    int ans=0;
    for(int i=1;i<=m;i++) if(max[i]>ans) ans=max[i];
    printf("%d\n",ans);
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值