其他分享
首页 > 其他分享> > ABC217 E - Sorting Queries

ABC217 E - Sorting Queries

作者:互联网

目录

Description

有三种操作:

\(1 \ x \ :\) 在队列尾部添加一个元素 \(x\)

\(2\ :\) 删除队头元素,并输出

\(3\ :\) 将队列元素排序

State

\(1<=n<=2*10^5\)

\(0<=x<=10^9\)

Input

8
1 4
1 3
1 2
1 1
3
2
1 0
2

Output

1
2

Solution

题目的下手点就是如何优雅的解决掉操作 \(3\)

可利用一个小根堆,每次 \(3\) 操作,把队列中的元素全部放入小根堆中,如果小根堆不为空,那么小根堆的 \(top\) 即为答案


Code

signed main()
{
    //IOS;
    while(~ sd(n)){
        queue<int> q;
        priority_queue<int, vector<int>, greater<int>> pq;
        while(n --> 0){
            int x = read();
            if(x == 1){
                int y = read();
                q.push(y);
            }
            else if(x == 2){
                int ans;
                if(pq.empty()){
                    ans = q.front();
                    q.pop();
                }
                else{
                    ans = pq.top();
                    pq.pop();
                }
                pd(ans);
            }
            else{
                while(! q.empty()){
                    pq.push(q.front());
                    q.pop();
                }
            }
        }
    }
    //PAUSE;
    return 0;
}

标签:pq,ABC217,int,Queries,pop,else,Sorting,ans,小根堆
来源: https://www.cnblogs.com/Segment-Tree/p/15322647.html