HDU 4638Group (莫队)

Group

Problem Description

There are n men ,every man has an ID(1..n).their ID is unique. Whose ID is i and i-1 are friends, Whose ID is i and i+1 are friends. These n men stand in line. Now we select an interval of men to make some group. K men in a group can create K*K value. The value of an interval is sum of these value of groups. The people of same group's id must be continuous. Now we chose an interval of men and want to know there should be how many groups so the value of interval is max.

Input

First line is T indicate the case number.
For each case first line is n, m(1<=n ,m<=100000) indicate there are n men and m query.
Then a line have n number indicate the ID of men from left to right.
Next m line each line has two number L,R(1<=L<=R<=n),mean we want to know the answer of [L,R].

Output

For every query output a number indicate there should be how many group so that the sum of value is max.

Sample Input

1
5 2
3 1 2 5 4
1 5
2 4

Sample Output

1
2

题目大意:

多组数据

给出n和m,a[i]为1到n的不重复数

询问m次

问一段区间内,连续的一段可分为一组(可以打乱顺序),问至少分多少组,

莫队板子题。

这里纠正一下莫队细节

先加再删,不要先删再加

#include <algorithm>
#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstring>
#define maxn 100100
using namespace std;
int n,m,zz,k;
int a[maxn];
int belong[maxn];
int vis[maxn];
int ans;
inline int read()
{
    int x=0,f=1;char s=getchar();
    while('0'>s||s>'9') {
        if(s=='-') f=-1;
        s=getchar();
    }
    while('0'<=s&&s<='9') {
        x=x*10+s-'0';
        s=getchar();
    }
    return x*f;
}
struct edge {
    int x,y,id;
    int ans;
    bool operator < (const edge &a) const {
        return belong[x]==belong[a.x] ? y<a.y : x<a.x;
    }
} q[maxn];
inline int cmp(const edge &a,const edge &b) {
    return a.id<b.id;
}
inline void Add(int x) {
    int dsr=vis[x+1]+vis[x-1];
    dsr==0 ? ++ans : dsr==2?--ans:ans;
    ++vis[x];
}
inline void Delet(int x) {
    int dsr=vis[x+1]+vis[x-1];
    dsr==0? --ans : dsr==2?++ans:ans;
    --vis[x];
}

int main() {
    zz=read();
    while(zz--) {
        memset(a,0,sizeof(a));
        memset(belong,0,sizeof(belong));
        memset(q,0,sizeof(q));
        memset(vis,0,sizeof(vis));
        ans=0;
        n=read();
        m=read();
        k=sqrt(n);
        for(int i=1; i<=n; ++i) {
            a[i]=read();
            belong[i]=(i-1)/k+1;
        }
        for(int i=1,x,y; i<=m; ++i) {
            q[i].x=read();
            q[i].y=read();
            q[i].id=i;
        }
        sort(q+1,q+1+m);
        for(register int i=1,l=1,r=0; i<=m; ++i) {
            register int x=q[i].x,y=q[i].y;
            while(r < y) Add(a[++r]);
            while(r > y) Delet(a[r--]);
            while(l < x) Delet(a[l++]);
            while(l > x) Add(a[--l]);
            q[i].ans=ans;
        }
        sort(q+1,q+1+m,cmp);
        for(int i=1; i<=m; ++i)
            printf("%d\n",q[i].ans);
    }
    return 0;
}
全部评论

相关推荐

02-08 20:56
已编辑
南京工业大学 Java
在等offer的比尔很洒脱:我也是在实习,项目先不说,感觉有点点小熟悉,但是我有点疑问,这第一个实习,公司真的让实习生去部署搭建和引入mq之类的吗,是不是有点过于信任了,我实习过的两个公司都是人家正式早搭好了,根本摸不到部署搭建的
点赞 评论 收藏
分享
02-08 15:53
门头沟学院 Java
CoderEcho:让公司知道便宜没好货
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务