hdu 4638 Group

离线处理+树状数组

//http://blog.csdn.net/zz_1215/
#pragma comment(linker, "/STACK:102400000,102400000")
#include<iostream>
#include<vector>
#include<algorithm>
#include<cstdio>
#include<queue>
#include<stack>
#include<string>
#include<map>
#include<set>
#include<cmath>
#include<cassert>
#include<cstring>
#include<iomanip>
#include<ctime>
using namespace std;
typedef long long i64;
#define S64(a)          scanf(in64,&a)
#define SS(a)           scanf("%d",&a)
#define LL(a)           ((a)<<1)
#define RR(a)           (((a)<<1)+1)
#define pb              push_back
#define pf              push_front
#define X               first
#define Y               second
#define CL(Q)           while(!Q.empty())Q.pop()
#define MM(name,what)   memset(name,what,sizeof(name))
#define MC(a,b)		memcpy(a,b,sizeof(b))
#define MAX(a,b)        ((a)>(b)?

(a):(b))
#define MIN(a,b)        ((a)<(b)?

(a):(b))
#define read            freopen("in.txt","r",stdin)
#define write           freopen("out.txt","w",stdout)

const int inf = 0x3f3f3f3f;
const i64 inf64 = 0x3f3f3f3f3f3f3f3fLL;
const double oo = 10e9;
const double eps = 10e-9;
const double pi = acos(-1.0);
const int maxn = 100000 + 111;

struct zz{
	int l, r, id;
	bool operator < (const zz& cmp) const{
		return l < cmp.l;
	}
};

int n, m;
int a[maxn];
bool have[maxn];
int pos[maxn];
int ta[maxn];
int ans[maxn];
vector<zz>v;

int lowbit(int x){
	return x & (-x);
}

void add(int pos, int num, int ary[]){
	while (pos <= n){
		ary[pos] += num;
		pos += lowbit(pos);
	}
}

int sum(int x, int ary[]){   // 1 to x
	int ans = 0;
	while (x){
		ans += ary[x];
		x -= lowbit(x);
	}
	return ans;
}

int query(int x, int y){
	return sum(y, ta) - sum(x - 1, ta);
}

inline int find(int x){
	if (!have[x - 1] && !have[x + 1]){
		return 1;
	}
	else if (have[x - 1] && have[x + 1]){
		return -1;
	}
	else{
		return 0;
	}
}

void start(){
	for (int i = 1; i <= n; i++){
		have[i] = false;
		ta[i] = 0;
	}
	for (int i = 1; i <= n; i++){
		pos[a[i]] = i;
	}
	for (int i = 1; i <= n; i++){
		add(i, find(a[i]), ta);
		have[a[i]] = true;
	}
	int temp = 0;
	for (int i = 1; i <= n; i++){
		while (temp <(int) v.size()){
			if (v[temp].l == i){
				ans[v[temp].id] = query(v[temp].l, v[temp].r);
				temp++;
			}
			else{
				break;
			}
		}
		have[a[i]] = false;
		if (have[a[i] + 1]){
			add(pos[a[i] + 1], 1, ta);
		}
		if (have[a[i] - 1]){
			add(pos[a[i] - 1], 1, ta);
		}
	}
	return;
}

int main()
{
	int T;
	cin >> T;
	while (T--){
		cin >> n >> m;
		for (int i = 1; i <= n; i++){
			cin >> a[i];
		}
		zz temp;
		v.clear();
		for (int i = 1; i <= m; i++){
			//cin >> temp.l >> temp.r;
			SS(temp.l); SS(temp.r);
			temp.id = i;
			v.push_back(temp);
		}
		sort(v.begin(), v.end());
		start();
		for (int i = 1; i <= m; i++){
			//cout << ans[i] << endl;
			printf("%d\n", ans[i]);
		}
	}
	return 0;
}
时间: 2024-10-04 09:12:36

hdu 4638 Group的相关文章

HDU 4638 Group (莫队算法||线段树离散查询)

题目地址:HDU 4638 先写了一发莫队,莫队可以水过.很简单的莫队,不多说. 代码如下: #include <iostream> #include <string.h> #include <math.h> #include <queue> #include <algorithm> #include <stdlib.h> #include <map> #include <set> #include <s

hdu 4638 Group(莫队算法|离线线段树)

Group Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1323    Accepted Submission(s): 703 Problem Description There are n men ,every man has an ID(1..n).their ID is unique. Whose ID is i and i-

hdu 4638 Group 莫队算法

题目链接 很裸的莫队, 就不多说了... 1 #include<bits/stdc++.h> 2 using namespace std; 3 #define pb(x) push_back(x) 4 #define ll long long 5 #define mk(x, y) make_pair(x, y) 6 #define lson l, m, rt<<1 7 #define mem(a) memset(a, 0, sizeof(a)) 8 #define rson m+1

HDU 4638 莫队算法

Group Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 2483    Accepted Submission(s): 1272 Problem Description There are n men ,every man has an ID(1..n).their ID is unique. Whose ID is i and i-

HDU 4638 (莫队)

题目链接:Problem - 4638 做了两天莫队和分块,留个模板吧. 当插入r的时候,设arr[r]代表r的位置的数字,判断vis[arr[r-1]]和vis[arr[r+1]]是否访问过,如果两个都访问过,那么块的个数-1,如果有一个访问过,块的个数不变,如果都为0,块的个数+1. 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <algorithm>

区间的关系的计数 HDU 4638 离线+树状数组

题目大意:给你n个人,每个人都有一个id,有m个询问,每次询问一个区间[l,r],问该区间内部有多少的id是连续的(单独的也算是一个) 思路:做了那么多离线+树状数组的题目,感觉这种东西就是一个模板了,23333,反正都是定义右区间的. 这题的关键难度就是如何定义id是连续的呢.我们每次往区间里面放一个数值以后都要add(pos, 1),就是把pos~n的所有的关系都+1.然后如果说在pos之前就出现id-1,就要add(pos[id-1], -1)(同理id+1也是这样),这样子表示从pos[

数列区间询问中的分块思想

分块算法主要用于给定序列的区间询问问题,能够以较小的时间代价暴力求解,时间复杂度一般在O(n*n^0.5).关键在O(1) 维护好某一区间在增加或者减少一个边界元素所带来的影响.需要注意的就是在更新的区间的时候要先放大在缩小,否则可能出现当前区间左右边界互换的情况,这 个影响某一些题可能没有影响,但是极有可能出错. 时间复杂度:先考虑左边界的时间复杂度,由于分成了sqrt(n)块,而同一块中左标移动的范围最多是sqrt(n),那相邻块跳 转的情况呢?可以虚拟出每块中有至少一个询问进行思考,那么相

线段树题目总结

一.单点更新 1.hdu1166 敌兵布阵:有N个兵营,每个兵营都给出了人数ai(下标从1开始),有四种命令,(1)"Addij",表示第i个营地增加j人.(2)"Sub i j",表示第i个营地减少j人.(3)"Query ij",查询第i个营地到第j个营地的总人数.(4)"End",表示命令结束.解题报告Here. 2.hdu1754 I Hate It:给你N个数,M个操作,操作分两类.(1)"QAB"

线段树总结 (转载 里面有扫描线类 还有NotOnlySuccess线段树大神的地址)

转载自:http://blog.csdn.net/shiqi_614/article/details/8228102 之前做了些线段树相关的题目,开学一段时间后,想着把它整理下,完成了大牛NotOnlySuccess的博文“完全版线段树”里的大部分题目,其博文地址Here,然后也加入了自己做过的一些题目.整理时,更新了之前的代码风格,不过旧的代码仍然保留着. 同样分成四类,不好归到前四类的都分到了其他.树状数组能做,线段树都能做(如果是内存限制例外),所以也有些树状数组的题目,会标示出来,并且放