题意:
长度为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<iostream>
#include<algorithm>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<string>
#include<vector>
#include<cctype>
#include<set>
#include<map>
#include<queue>
#include<stack>
#include<iomanip>
#include<sstream>
#include<limits>
#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<b.r;
}
int main(){
#ifdef LOCAL
freopen("C:\\Users\\lanjiaming\\Desktop\\acm\\in.txt","r",stdin);
//freopen("output.txt","w",stdout);
#endif
//ios_base::sync_with_stdio(0);
int T,n,m;
scanf("%d",&T);
while(T--)
{
scanf("%d%d",&n,&m);
for(int i = 1; i <= n; i++) scanf("%d",&a[i]);
unit = (int)sqrt(n);
for(int i = 0; i < m; i++)
{
scanf("%d%d",&Q[i].l,&Q[i].r);
Q[i].id = i;
Q[i].x = (Q[i].l-1) / unit + 1;
}
sort(Q,Q+m,cmp);
memset(vis,false,sizeof(vis));
int L = Q[0].l, R = Q[0].l-1;
ll temp = 0;
for(int i = 0;i < m;i++)
{
while(R < Q[i].r)
{
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]] = true;
}
while(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;
}