zoukankan      html  css  js  c++  java
  • 【Map】Double Queue

    Double Queue
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 13258   Accepted: 5974

    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

    题目大意:

      有三个操作,1 K P:设置点K的优先级为P;

            2 :输出优先级最高的点,并且删除该点

            3 :输出优先级最低的点,并且删除该点  

            0:退出

      用map处理,插入和查找的复杂度都为log n;

     1 #include <iostream>
     2 #include <algorithm>
     3 #include <string>
     4 #include <queue>
     5 #include <stdio.h>
     6 #include <map>
     7 #include <string.h>
     8 #include <stdlib.h>
     9 using namespace std;
    10 int main()
    11 {
    12     int T,a,P,K;
    13     map<int,int>ID;
    14     map<int,int>::iterator it;
    15     while(scanf("%d",&a)!=EOF){
    16         switch(a){
    17             case 1:
    18                 scanf("%d%d",&P,&K);
    19                 ID[K]=P;break;
    20             case 2:
    21                 if(ID.empty())printf("0
    ");
    22                 else {
    23                     it=ID.end();it--;
    24                     printf("%d
    ",it->second);
    25                     ID.erase(it);
    26                 }
    27                 break;
    28             case 3:
    29                 if(ID.empty())printf("0
    ");
    30                 else {
    31                     it=ID.begin();
    32                     printf("%d
    ",it->second);
    33                     ID.erase(it);
    34                 }
    35                 break;
    36             case 0: return 0;
    37         }
    38     }
    39 
    40     return 0;
    41 }
    View Code
  • 相关阅读:
    BZOJ 4445 [Scoi2015]小凸想跑步:半平面交
    BZOJ 3931 [CQOI2015]网络吞吐量:最大流【拆点】
    BZOJ 3698 XWW的难题:有上下界的最大流
    AtCoder ARC097C Sorted and Sorted:dp
    BZOJ 1835 [ZJOI2010]base 基站选址:线段树优化dp
    BZOJ 3329 Xorequ:数位dp + 矩阵快速幂
    BZOJ 1492 [NOI2007]货币兑换Cash:斜率优化dp + cdq分治
    BZOJ 4726 [POI2017]Sabota?:树形dp
    BZOJ 1185 [HNOI2007]最小矩形覆盖:凸包 + 旋转卡壳
    存一些东西
  • 原文地址:https://www.cnblogs.com/Wurq/p/5440889.html
Copyright © 2011-2022 走看看