码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces Round #357 (Div. 2) - C - Heap Operations

时间:2016-08-01 00:00:49      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:

WA * 3 + TLE *1  啊啊啊!说好的考虑问题要仔细呢?!

 技术分享

 

题意:


简单说就是,有一串操作,丢失了一部分,只有 n 个操作了, 补全操作,使得每次 getMin 得到对应的值。
输出所有操作的个数和操作序列。

 

解题:

用优先队列直接模拟过来的,标记一下某些位置 表示它之前还要进行哪些操作 才能做到,最后直接输出;
对于每个情况,
如果是 removeMin , 考虑队列是否为空,如果空,就要先插入一个;;
如果是 getMin ,
考虑 当前队列最小的元素 比 给出的数 大还是小,
如果小的话要把小的都出队,注意可能它们不止一个(WA了一次= =),记录一下步数;
如果大的话, 直接入队即可。

 

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<string>
#include<queue>
using namespace std;

priority_queue<int,vector<int>,greater<int> > q;

const int maxn = 100010;
int ins[maxn],re[maxn],op[maxn];
char str[maxn][20];
int main()
{
    int n;
    while(!q.empty()) q.pop();
    scanf("%d",&n);
    int cnt = n,cr=0;
    for(int i=0;i<n;i++){
        scanf("%s",str[i]);
        if( strcmp(str[i],"removeMin") != 0 )
            scanf("%d",&op[i]);             
        if(strcmp(str[i],"insert") == 0){
            q.push(op[i]);
        }
        if(strcmp(str[i],"removeMin")==0){
            if(q.empty()){                
                op[i] = 0;
                ins[i] = 1; cnt++;
            }
            else q.pop();
        }
        if(strcmp(str[i], "getMin") == 0){
            if(!q.empty()){
                if(q.top() < op[i]){
                    while((q.top() < op[i]) && (!q.empty()) ){                
                        re[i] ++; cnt ++;
                        q.pop(); 
                    }
                    if(q.top() != op[i] ) {
                        q.push(op[i]); cnt++;
                        ins[i] = 1;
                    }                 
                }                
                if(q.top() > op[i]){
                    q.push(op[i]);
                    ins[i] = 1; cnt ++;
                }
            }
            else {
                q.push(op[i]);
                ins[i] = 1; cnt ++;
            }            
        }        
    }
    cout<<cnt<<endl;
    for(int i=0;i<n;i++){
        if(ins[i]) printf("insert %d\n",op[i]);
        if(re[i])
            for(int j=0;j<re[i];j++) printf("removeMin\n");
        if(strcmp(str[i], "removeMin") != 0)
            printf("%s %d\n",str[i],op[i]);
        else printf("%s\n",str[i]);
    }
    return 0; 
}

 

Codeforces Round #357 (Div. 2) - C - Heap Operations

标签:

原文地址:http://www.cnblogs.com/ember/p/5724099.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!