我是靠谱客的博主 俊秀长颈鹿,最近开发中收集的这篇文章主要介绍UVA 501 Black Box,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

优先队列模拟。输入n个数,然后是m次操作,第i个操作k是要求输出前k个数中第i大的数的值。

两个优先队列,可以理解为把前k个数由小到大排序,从第i个数后断开,第一段的最后一个就是所求啦。不妨把第一段反过来,用最大堆来存储,这样顶即为所求。每个询问操作都要先把第二段的第一个(最小值,用最小堆存储)压入第一段中,之后再判断第二段的最小值是否比第一段的最大值小(是否符合不降序),小就交换。

#include<algorithm>
#include<iostream>
#include<cstring>
#include<cstdio>
#include<vector>
#include<string>
#include<queue>
#include<cmath>
#include<set>
#include<map>
///LOOP
#define REP(i, n) for(int i = 0; i < n; i++)
#define FF(i, a, b) for(int i = a; i < b; i++)
#define FFF(i, a, b) for(int i = a; i <= b; i++)
#define FD(i, a, b) for(int i = a - 1; i >= b; i--)
#define FDD(i, a, b) for(int i = a; i >= b; i--)
///INPUT
#define RI(n) scanf("%d", &n)
#define RII(n, m) scanf("%d%d", &n, &m)
#define RIII(n, m, k) scanf("%d%d%d", &n, &m, &k)
#define RIV(n, m, k, p) scanf("%d%d%d%d", &n, &m, &k, &p)
#define RV(n, m, k, p, q) scanf("%d%d%d%d%d", &n, &m, &k, &p, &q)
#define RFI(n) scanf("%lf", &n)
#define RFII(n, m) scanf("%lf%lf", &n, &m)
#define RFIII(n, m, k) scanf("%lf%lf%lf", &n, &m, &k)
#define RFIV(n, m, k, p) scanf("%lf%lf%lf%lf", &n, &m, &k, &p)
#define RS(s) scanf("%s", s)
///OUTPUT
#define PN printf("n")
#define PI(n) printf("%dn", n)
#define PIS(n) printf("%d ", n)
#define PS(s) printf("%sn", s)
#define PSS(s) printf("%s ", n)
///OTHER
#define PB(x) push_back(x)
#define CLR(a, b) memset(a, b, sizeof(a))
#define CPY(a, b) memcpy(a, b, sizeof(b))
#define display(A, n, m) {REP(i, n){REP(j, m)PIS(A[i][j]);PN;}}

using namespace std;
typedef long long LL;
typedef pair<int, int> P;
const int MOD = 100000000;
const int INFI = 1e9 * 2;
const LL LINFI = 1e17;
const double eps = 1e-6;
const double pi = acos(-1.0);
const int N = 33333;
const int M = 1111111;
const int move[8][2] = {0, 1, 0, -1, 1, 0, -1, 0, 1, 1, 1, -1, -1, 1, -1, -1};

int a[N];
priority_queue<int> qb;
priority_queue<int, vector<int>, greater<int> > qs;

int main()
{
    //freopen("input.txt", "r", stdin);
    //freopen("output.txt", "w", stdout);

    int t, n, m, k, p, x, y;
    RI(t);
    while(t--)
    {
        RII(n, m);
        REP(i, n)RI(a[i]);
        while(!qb.empty())qb.pop();
        while(!qs.empty())qs.pop();
        p = 0;
        REP(i, m)
        {
            RI(k);
            FF(j, p, k)qs.push(a[j]);
            x = qs.top();
            qs.pop();
            qb.push(x);
            while(!qs.empty() && qb.top() > qs.top())
            {
                x = qb.top();
                y = qs.top();
                qb.pop();
                qs.pop();
                qb.push(y);
                qs.push(x);
            }
            PI(qb.top());
            p = k;
        }
        if(t)PN;
    }
    return 0;
}


最后

以上就是俊秀长颈鹿为你收集整理的UVA 501 Black Box的全部内容,希望文章能够帮你解决UVA 501 Black Box所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(79)

评论列表共有 0 条评论

立即
投稿
返回
顶部