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 is identified by a positive integer Kand, 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
KP 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

解题思路:
  本题要求处理银行排队问题,根据每行的输入处理数据;若输入为1则继续输入两个整数,以第一个数为权值,第二个数为优先级(数值越大优先级越高)加入排队系统中;若输入为2 则处理当前优先级最高的用户,并输出用户的权值;若输入为3 则处理当前优先级最低的用户,并输出用户权值;若输入为0结束运行。若当没有排队人数则无论输入2、3都输出0。

  利用set自带红黑树排序的性质,可以在集合中直接获取最高与最低优先级,用pair记录权值和优先级,将pair传入集合。用迭代器可以获得集合首位(最大优先级)和集合末尾(最小优先级),数据处理完毕后可以通过erase()删除当前用户以便后续操作。

样例分析:
Sample Input

2          //处理高优先级用户,当前无人排队输出0
1 20 14      //优先级为14的用户20开始排队
1 30 3       //优先级为3的用户30开始排队
2          //处理高优先级用户,当前队列中有 20 14   30 3 最高优先级14 输出20
1 10 99      //优先级为99的用户10开始排队
3          //处理低优先级用户,当前队列中有 10 99   30 3 最低优先级3 输出30
2          //处理高优先级用户,当前队列中有 10 99 最高优先级99 输出10
2          //处理高优先级用户, 当前无人排队输出0
0          //输入为0结束
 1 #include <cstdio>
 2 #include <iterator>
 3 #include <set>
 4 //bits/stdc++.h编译错误
 5 using namespace std;
 6 //利用set的排序性质
 7 struct cmp{ //set比较方法以pair的第二个成员为基准,数值越大的在前
 8     bool operator() (const pair<int, int> &a, const pair<int, int> &b)
 9     {
10         return a.second > b.second;
11     }
12 };
13 set<pair<int, int>, cmp> waitingList;  //用set记录当前队列
14 int main()
15 {
16     int n;
17     while(scanf("%d", &n) != EOF){  //输入数据
18         if(n == 0)  //输入为0结束运行
19             break;
20         if(n == 1){ //输入为1
21             pair<int, int> temp;
22             scanf("%d%d", &temp.first, &temp.second);   //记录用户权值与优先级
23             waitingList.insert(temp);   //用户开始排队
24         }
25         if(n == 2){ //输入为2
26             if(!waitingList.empty()){
27                 set<pair<int, int>, cmp>::iterator it = waitingList.begin();
28                 //获取优先级最高的用户
29                 printf("%d\n", (*it).first);    //输出用户权值
30                 waitingList.erase(it);  //删除用户
31             }else{
32                 printf("0\n");  //队中无人
33             }
34         }
35         if(n == 3){
36             if(!waitingList.empty()){
37                 set<pair<int, int>, cmp>::iterator it = waitingList.end();
38                 it--;
39                 //获取优先级最小的用户
40                 printf("%d\n", (*it).first);    //输出用户权值
41                 waitingList.erase(it);  //删除用户
42             }else{
43                 printf("0\n");//队中无人
44             }
45         }
46     }
47     return 0;
48 }

原文地址:https://www.cnblogs.com/suvvm/p/9886565.html

时间: 2024-10-22 22:19:49

POJ 3481 Double Queue(set实现)的相关文章

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

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 (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 堆修改标记

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

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<

POJ 题目3481 Double Queue(SBT ro map)

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