码迷,mamicode.com
首页 > 其他好文 > 详细

2014 Super Training #8 B Consecutive Blocks --排序+贪心

时间:2014-07-13 19:31:18      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   2014   

当时不知道怎么下手,后来一看原来就是排个序然后乱搞就行了。

解法不想写了,可见:http://blog.csdn.net/u013368721/article/details/28071241

其实就是滑动窗口的思想。

代码:

bubuko.com,布布扣
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <cstdlib>
#include <algorithm>
using namespace std;
#define N 100007
#define M 33

struct node
{
    int col,ind;
}p[N];

int cmp(node ka,node kb)
{
    if(ka.col == kb.col)
        return ka.ind < kb.ind;
    return ka.col < kb.col;
}

int main()
{
    int i,j,now,cnt,L;
    int n,m;
    while(scanf("%d%d",&n,&m)!=EOF)
    {
        for(i=1;i<=n;i++)
        {
            scanf("%d",&p[i].col);
            p[i].ind = i;
        }
        sort(p+1,p+n+1,cmp);
        L = 1;
        now = m;
        cnt = 1;
        int maxi = 1;
        for(i=2;i<=n;i++)
        {
            if(p[i].col == p[i-1].col)
            {
                now -= (p[i].ind-p[i-1].ind-1);
                cnt++;
                while(now < 0)  //滑动
                {
                    now += p[L+1].ind-p[L].ind-1;
                    cnt--;
                    L++;
                }
                maxi = max(maxi,cnt);
            }
            else
            {
                maxi = max(cnt,maxi);
                now = m;
                L = i;
                cnt = 1;
            }
        }
        maxi = max(maxi,cnt);
        printf("%d\n",maxi);
    }
    return 0;
}
View Code

 

2014 Super Training #8 B Consecutive Blocks --排序+贪心,布布扣,bubuko.com

2014 Super Training #8 B Consecutive Blocks --排序+贪心

标签:style   blog   http   color   os   2014   

原文地址:http://www.cnblogs.com/whatbeg/p/3841121.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!