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
  • 相关阅读:
    linux 硬盘满了 怎么优化
    Mysql 忘记密码 Linux
    嵌入式新闻早班车-第18期
    《安富莱嵌入式周报》第225期:2021.08.09--2021.08.15
    【DSP教程】第43章 IIR滤波器的Matlab设计
    【DSP教程】第42章 IIR无限冲击响应滤波器设计
    嵌入式新闻早班车-第17期
    《安富莱嵌入式周报》第224期:2021.08.02--2021.08.08
    H7-TOOL重大更新,发布WiFi版,新增暗黑主题,脱机烧录增加大唐半导体,自此高速USB,以太网和WiFi方式全部打通(2021-08-07)
    【STM32H7的DSP教程】第41章 FIR滤波器的群延迟(重要)
  • 原文地址:https://www.cnblogs.com/Wurq/p/5440889.html
Copyright © 2011-2022 走看看