hdu 4638 Group(莫队)

题意:

         长度为n的数列(1..n)。对于一个给定的区间。求区间最少有多少组连续数字串。

         比如:1,3,2,6,8,7块数就为2。1,2,3一块。6,7,8为一块。


分析:

这题可以莫队,离线线段树,离线数状数组。

我用莫队写,比较好写。

一开始没想到开个bool数组,不知道如何记录是否连续。


如果vis[i-1]和vis[i+1]都为1的话那么  块数-1。

如果只有一个为1  块数不变。

如果全为0   块数+1。


#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define ll long long
#define inf 0x3f3f3f3f
using namespace std;
const int maxn = 2e5+10;
const ll MOD = 1000000007;
const double EPS = 1e-10;
const double Pi = acos(-1.0);
struct Node{
  int l,r,id,x;
}Q[maxn];
ll ans[maxn];
int a[maxn];
bool vis[maxn];
int unit;
bool cmp(Node a,Node b)
{
    if (a.x != b.x) return a.x < b.x;
    else return a.r Q[i].r)
            {
                if (vis[a[R]-1] && vis[a[R]+1]) temp++;
                else if (!vis[a[R]-1] && !vis[a[R]+1]) temp--;
                vis[a[R]] = false;
                R--;
            }
            while(L < Q[i].l)
            {
                if (vis[a[L]-1] && vis[a[L]+1]) temp++;
                else if (!vis[a[L]-1] && !vis[a[L]+1]) temp--;
                vis[a[L]] = false;
                L++;
            }
            while(L > Q[i].l)
            {
                L--;
                if (vis[a[L]-1] && vis[a[L]+1]) temp--;
                else if (!vis[a[L]-1] && !vis[a[L]+1]) temp++;
                vis[a[L]] = true;
            }
            ans[Q[i].id] = temp;

        }
        for(int i = 0; i < m; i++) printf("%I64d\n",ans[i]);
    }
    return 0;
}


你可能感兴趣的:(莫队)