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,sum=0;
	while(scanf("%d",&x)==1&&x){
		if(x==1){
			int a,b;
			scanf("%d%d",&a,&b);
			mymap[b]=a;
			++sum;
		}else if(x==2){
			if(sum==0)
				printf("0\n");
			else{
				iter=mymap.end();
				--iter;
				printf("%d\n",iter->second);
				mymap.erase(iter);
				--sum;
			}
		}else if(x==3){
			if(sum==0)
				printf("0\n");
			else{
				iter=mymap.begin();
				printf("%d\n",iter->second);
				mymap.erase(iter);
				--sum;
			}
		}
	}
	return 0;
} 
时间: 2024-08-06 20:08:15

poj 3481 Double Queue STL中map的运用的相关文章

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 2418 Hardwood Species(STL中map的应用)

题目地址:POJ 2418 通过这个题查了大量资料..知道了很多以前不知道的东西.... 在代码中注释说明吧. 代码如下: #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <stdlib.h> #include <math.h> #include <ctype.h> #include <queue&

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

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 env

跳跃表基础——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(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 堆修改标记

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

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<