AVL树(模板题)—— POJ 3481 Double Queue

对应POJ题目:点击打开链接

Double Queue

Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 11741   Accepted: 5335

Description

The new founded Balkan Investment Group Bank (BIG-Bank) opened a new office in Bucharest, equipped with a modern computing environment provided by IBM Romania, and using modern information technologies. As usual, each client of the bank is identified by
a positive integer K and, upon arriving to the bank for some services, he or she receives a positive integer priority P. One of the inventions of the young managers of the bank shocked the software engineer of the serving system. They proposed
to break the tradition by sometimes calling the serving desk with the lowest priority instead of that with the highest priority. Thus, the system will receive the following types of request:

0 The system needs to stop serving
K P Add client K to the waiting list with priority P
2 Serve the client with the highest priority and drop him or her from the waiting list
3 Serve the client with the lowest priority and drop him or her from the waiting list

Your task is to help the software engineer of the bank by writing a program to implement the requested serving policy.

Input

Each line of the input contains one of the possible requests; only the last line contains the stop-request (code 0). You may assume that when there is a request to include a new client in the list (code 1), there is no other request in the list of the same
client or with the same priority. An identifier K is always less than 106, and a priority P is less than 107. The client may arrive for being served multiple times, and each time may obtain a different priority.

Output

For each request with code 2 or 3, the program has to print, in a separate line of the standard output, the identifier of the served client. If the request arrives when the waiting list is empty, then the program prints zero (0) to the output.

Sample Input

2
1 20 14
1 30 3
2
1 10 99
3
2
2
0

Sample Output

0
20
30
10
0

题意:

有3个操作:(1  x   y)表示以y为优先级在队列里插入一对数(x   y),其中每一对数的x和y均不同;(2)表示输出优先级最高的一对数中的x,(3)表示输出优先级最低的一对数中的x;(0)表示退出。

思路:

各种二叉排序树,还有STL里的map,set也可AC,贴AVL模板

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX(x, y) ((x)>(y)?(x):(y))

typedef struct NODE
{
	int val, data;
	int bf; //平衡因子(左子树高度与右子树高度之差)
	int h; //以当前结点为根结点的数的高度
	NODE *l, *r;
}Node;

class BalanceTree
{
public:
	void Init()
	{
		rt = NULL;
	}
	int Height(Node *T)
	{
		if(NULL == T) return 0;
		return T->h;
	}
	int BF(Node *l, Node *r)
	{
		if(NULL == l && NULL == r) return 0;
		else if(NULL == l) return -r->h;
		else if(NULL == r) return l->h;
		else return l->h - r->h;
	}
	Node *LL_rotate(Node *A)
	{
		Node *B;
		B = A->l;
		A->l = B->r;
		B->r = A;
		A->h = MAX(Height(A->l), Height(A->r)) + 1;
		B->h = MAX(Height(B->l), Height(B->r)) + 1;
		A->bf = BF(A->l, A->r);
		B->bf = BF(B->l, B->r);
		return B;
	}
	Node *RR_rotate(Node *A)
	{
		Node *B;
		B = A->r;
		A->r = B->l;
		B->l = A;
		A->h = MAX(Height(A->l), Height(A->r)) + 1;
		B->h = MAX(Height(B->l), Height(B->r)) + 1;
		A->bf = BF(A->l, A->r);
		B->bf = BF(B->l, B->r);
		return B;
	}
	Node *LR_rotate(Node *A)
	{
		Node *C;
		A->l = RR_rotate(A->l);
		C = LL_rotate(A);
		return C;
	}
	Node *RL_rotate(Node *A)
	{
		Node *C;
		A->r = LL_rotate(A->r);
		C = RR_rotate(A);
		return C;
	}
	void Insert(int v, int e)
	{
		Insert_(rt, v, e);
	}
	void Insert_(Node *&T, int v, int e)
	{
		if(NULL == T){
			T = (Node *)malloc(sizeof(Node));
			T->val = v;
			T->data = e;
			T->bf = 0;
			T->h = 1;
			T->l = T->r = NULL;
			return;
		}
		if(e < T->data) Insert_(T->l, v, e);
		else Insert_(T->r, v, e);

		T->h = MAX(Height(T->l), Height(T->r)) + 1;
		T->bf = BF(T->l, T->r);

		if(T->bf > 1 || T->bf < -1){ //T结点失衡
			if(T->bf > 0 && T->l->bf > 0) T = LL_rotate(T); //如果T->bf > 0 则肯定有左儿子
			else if(T->bf < 0 && T->r->bf < 0) T = RR_rotate(T); //如果T->bf < 0 则肯定有右儿子
			else if(T->bf > 0 && T->l->bf < 0) T = LR_rotate(T);
			else if(T->bf < 0 && T->r->bf > 0) T = RL_rotate(T);
		}
	}
	void Delete(int flag) //flag为1表示找最大值
	{
		if(NULL == rt){
			printf("0\n");
			return;
		}
		Node *tmp = rt;
		if(!flag) while(tmp->l) tmp = tmp->l;
		else while(tmp->r) tmp = tmp->r;
		printf("%d\n", tmp->val);
		Delete_(rt, tmp->data);
	}
	void Delete_(Node *&T, int key)
	{
		if(NULL == T) return;
		if(key < T->data){ //从左边删除
			Delete_(T->l, key);
			T->bf = BF(T->l, T->r); //计算删除后T结点的平衡因子
			if(T->bf < -1){ //T结点左边高度变小(删了左边的元素)导致失衡
				if(1 == T->r->bf) T = RL_rotate(T); //RL型
				else T = RR_rotate(T); //平衡因子为0或-1
			}
		}
		else if(key > T->data){ //从右边删除
			Delete_(T->r, key);
			T->bf = BF(T->l, T->r); //计算删除后T结点的平衡因子
			if(T->bf > 1){ //T结点右边高度变小(删了右边的元素)导致失衡
				if(-1 == T->l->bf) T = LR_rotate(T); //LR型
				else T = LL_rotate(T); //平衡因子为0或1
			}
		}
		else{
			if(T->l && T->r){ //左右都不为空
				Node *tmp = T;
				while(tmp->r) tmp = tmp->r;
				T->data = tmp->data;
				Delete_(T->l, tmp->data);
				T->bf = BF(T->l, T->r); //计算删除后T结点的平衡因子
				if(T->bf < -1){ //T结点左边高度变小(删了左边的元素)导致失衡
					if(1 == T->r->bf) T = RL_rotate(T); //RL型
					else T = RR_rotate(T); //平衡因子为0或-1
				}
			}
			else{
				Node *tmp = T;
				if(T->l) T = T->l; //有左儿子
				else if(T->r) T = T->r; //有右儿子
				else{ //T无儿子
					free(T);
					T = NULL;
				}
				if(T) free(tmp);
			}
		}
	}
	void Show()
	{
		InOrder(rt);
		printf("\n");
	}
	void InOrder(Node *T)
	{
		if(NULL == T) return;
		InOrder(T->l);
		printf("%d(%d) ", T->val, T->data);
		InOrder(T->r);
	}
	void Free()
	{
		FreeTree(rt);
	}
	void FreeTree(Node *T)
	{
		if(NULL == T) return;
		FreeTree(T->l);
		FreeTree(T->r);
		free(T);
	}
private:
	Node *rt;
};

BalanceTree bt;

int main()
{
	//freopen("in.txt","r",stdin);
	int op, v, e;
	bt.Init();
	while(scanf("%d", &op), op)
	{
		if(1 == op){
			scanf("%d%d", &v, &e);
			bt.Insert(v, e);
		}
		else if(2 == op)
			bt.Delete(1);
		else if(3 == op)
			bt.Delete(0);
	}
	bt.Free();
	return 0;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-10 20:50:00

AVL树(模板题)—— POJ 3481 Double Queue的相关文章

字典树模板题 POJ 2503

1 #include <cstdio> 2 #include <cstring> 3 4 char en[11],fr[11]; 5 int st; 6 struct Tire{ 7 int next[26]; 8 char eng[11]; 9 }node[200005]; 10 void insert(char *s,int cur) 11 { 12 if(*s){ 13 if(!node[cur].next[*s-'a']) 14 node[cur].next[*s-'a']

POJ 3481 Double Queue(Treap模板题)

Double Queue Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 15786   Accepted: 6998 Description The new founded Balkan Investment Group Bank (BIG-Bank) opened a new office in Bucharest, equipped with a modern computing environment provid

跳跃表基础——POJ 3481 Double Queue

对应POJ 题目:点击打开链接 Double Queue Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 11768   Accepted: 5349 Description The new founded Balkan Investment Group Bank (BIG-Bank) opened a new office in Bucharest, equipped with a modern computing en

POJ 3481 Double Queue 堆修改标记

Enemy Double Queue! 题目大意:维护一种数据结构,支持以下操作: 1.插入一个值 2.查询最大值并删除 3.查询最小值并删除 元素的值<=1000W 这数据结构一看就是堆...不过堆结构不能同时维护最大值和最小值,于是我们开两个堆,一个大根堆,一个小根堆 其中一堆删除时,另一堆也要删除相应元素 于是删除的话有两种方法 1.映射 1000W开数组映射妥妥MLE 于是我们在两个堆之间互相映射 不太好写 pair里开自己的指针会报错,于是只能开了void* 不过速度还是很可观的 #i

POJ - 3481 - Double Queue (STL)

Double Queue Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 11133   Accepted: 5056 Description The new founded Balkan Investment Group Bank (BIG-Bank) opened a new office in Bucharest, equipped with a modern computing environment provid

poj 3481 Double Queue STL中map的运用

题意: 维护一个集合,操作有1:加入一个元素,2:删除最大元素,3:删除最小元素. 分析: map本质是个容器,且具有第一个关键字有序的性质,所以用它来水水就好啦~ 代码: //poj 3481 //sep9 #include <iostream> #include <map> using namespace std; map<int,int> mymap; map<int,int>::iterator iter; int main() { int x,su

POJ 3481 Double Queue(STL)

题意  模拟银行的排队系统  有三种操作  1-加入优先级为p 编号为k的人到队列  2-服务当前优先级最大的   3-服务当前优先级最小的  0-退出系统 能够用stl中的map   由于map本身就依据key的值排了序   相应2.3  我们仅仅须要输出最大或最小即可了并从map中删除该键值 #include<cstdio> #include<map> using namespace std; map<int, int> a; int main() { map<

POJ 3481 Double Queue(set实现)

Double Queue The new founded Balkan Investment Group Bank (BIG-Bank) opened a new office in Bucharest, equipped with a modern computing environment provided by IBM Romania, and using modern information technologies. As usual, each client of the bank

POJ 3481 Double Queue splay

题意:3个炒作,1 插入一个(值,优先级) 2  找优先级最大的输出值并删除  3,找优先值最小的输出值并删除. 解题思路:splay 解题代码: 1 // File Name: poj3481.cpp 2 // Author: darkdream 3 // Created Time: 2015年04月09日 星期四 14时41分43秒 4 5 #include<vector> 6 #include<list> 7 #include<map> 8 #include<