zoukankan      html  css  js  c++  java
  • Codeforces Round #357 (Div. 2) Heap Operations

    Heap Operations

    题目连接:

    http://www.codeforces.com/contest/681/problem/C

    Description

    Petya has recently learned data structure named "Binary heap".

    The heap he is now operating with allows the following operations:

    put the given number into the heap;
    get the value of the minimum element in the heap;
    extract the minimum element from the heap;
    Thus, at any moment of time the heap contains several integers (possibly none), some of them might be equal.

    In order to better learn this data structure Petya took an empty heap and applied some operations above to it. Also, he carefully wrote down all the operations and their results to his event log, following the format:

    insert x — put the element with value x in the heap;
    getMin x — the value of the minimum element contained in the heap was equal to x;
    removeMin — the minimum element was extracted from the heap (only one instance, if there were many).
    All the operations were correct, i.e. there was at least one element in the heap each time getMin or removeMin operations were applied.

    While Petya was away for a lunch, his little brother Vova came to the room, took away some of the pages from Petya's log and used them to make paper boats.

    Now Vova is worried, if he made Petya's sequence of operations inconsistent. For example, if one apply operations one-by-one in the order they are written in the event log, results of getMin operations might differ from the results recorded by Petya, and some of getMin or removeMin operations may be incorrect, as the heap is empty at the moment they are applied.

    Now Vova wants to add some new operation records to the event log in order to make the resulting sequence of operations correct. That is, the result of each getMin operation is equal to the result in the record, and the heap is non-empty when getMin ad removeMin are applied. Vova wants to complete this as fast as possible, as the Petya may get back at any moment. He asks you to add the least possible number of operation records to the current log. Note that arbitrary number of operations may be added at the beginning, between any two other operations, or at the end of the log.

    Input

    The first line of the input contains the only integer n (1 ≤ n ≤ 100 000) — the number of the records left in Petya's journal.

    Each of the following n lines describe the records in the current log in the order they are applied. Format described in the statement is used. All numbers in the input are integers not exceeding 109 by their absolute value.

    Output

    The first line of the output should contain a single integer m — the minimum possible number of records in the modified sequence of operations.

    Next m lines should contain the corrected sequence of records following the format of the input (described in the statement), one per line and in the order they are applied. All the numbers in the output should be integers not exceeding 109 by their absolute value.

    Note that the input sequence of operations must be the subsequence of the output sequence.

    It's guaranteed that there exists the correct answer consisting of no more than 1 000 000 operations.

    Sample Input

    2
    insert 3
    getMin 4

    Sample Output

    4
    insert 3
    removeMin
    insert 4
    getMin 4

    题意

    开个优先队列,然后正着模拟

    插入一个数不用变

    移除最小的数的话,如果队列为空,那么得先随便插一个才行

    输出最小的数,如果输出的数比队首大,那么队列得pop到队首大于等于这个数才行。如果队首不是这个数,得push进去一个数才行。

    一开始用cout居然超时了,改为printf()就400+ms过了。

    代码

    #include<bits/stdc++.h>
    using namespace std;
    
    const int maxn =  1000000+100;
    const string s1 = "insert";
    const string s2 = "getMin";
    const string s3 = "removeMin";
    priority_queue<int,vector < int > , greater < int > > q;
    struct node{
       int k,v;
    }a[maxn];
    int main()
    {
        int n;
        int ans=0;
        scanf("%d",&n);
        while(n--){
            string s;int v;
            cin>>s;
            if(s==s3){
                if(q.empty()){
                    ans++;a[ans].k=1;a[ans].v=1;
                }
                else q.pop();
                ans++;a[ans].k=3;
            }
            else{
                cin>>v;
                if(s==s1){q.push(v);ans++;a[ans].k=1;a[ans].v=v;}
                else{
                  while(!q.empty()){
                     if(q.top()<v){
                        q.pop();ans++;a[ans].k=3;
                     }
                     else break;
                  }
                  if(q.empty()||q.top()>v){
                    q.push(v);ans++;a[ans].k=1,a[ans].v=v;
                  }
                  ans++;a[ans].k=2,a[ans].v=v;
                }
            }
        }
        printf("%d
    ",ans);
        for(int i=1;i<=ans;i++){
            if(a[i].k==3) printf("removeMin
    ");
            if(a[i].k==2) printf("getMin %d
    ",a[i].v);
            if(a[i].k==1) printf("insert %d
    ",a[i].v);
        }
        return 0;
    }
  • 相关阅读:
    试试Linux下的ip命令,ifconfig已经过时了
    VirtualBox中Linux虚拟机与主机共享文件夹
    VirtualBox内刚刚安装完CentOS6.9和7系统,无法调整屏幕的分辨率,也无法设置共享文件夹。解决的方法就是安装VirtualBox客户端增强包。
    Ftp、Ftps与Sftp之间的区别
    Linux 桌面的 Dock 类程序
    Dubbo服务超时
    Dubbo启动时检查
    Dubbo配置参数的优先级
    Dubbo监控中心
    SpringBoot集成监控管理
  • 原文地址:https://www.cnblogs.com/wangdongkai/p/5592085.html
Copyright © 2011-2022 走看看