牛客 Running Median (对顶堆)

该问题要求程序在接收到奇数个32位整数时,即时输出当前序列的中位数。解决方案是利用两个堆,一个最小堆和一个最大堆,保持堆的元素数量差不超过2,中位数位于较小堆的顶部。每次插入新值后,调整堆以确保正确计算中位数。输出时注意每10个中位数换行,并在最后一行检查是否有剩余中位数。
摘要由CSDN通过智能技术生成

For this problem, you will write a program that reads in a sequence of 32-bit signed integers. After each odd-indexed value is read, output the median (middle value) of the elements received so far.
输入描述:
The first line of input contains a single integer P(1 \leq P \leq 1000)P(1≤P≤1000), which is the number of data sets that follow. The first line of each data set contains the data set number, followed by a space, followed by an odd decimal integer M (1 \leq M \leq 9999)M(1≤M≤9999), giving the total number of signed integers to be processed. The remaining line(s) in the dataset consists of the values, 10 per line, separated by a single space. The last line in the dataset may contain less than 10 values.
输出描述:
For each data set the first line of output contains the data set number, a single space and the number of medians output (which should be one-half the number of input values plus one). The output medians will be on the following lines, 10 per line separated by a single space. The last line may have less than 10 elements, but at least 1 element. There should be no blank lines in the output.

输入

3
1 9
1 2 3 4 5 6 7 8 9
2 9
9 8 7 6 5 4 3 2 1
3 23
23 41 13 22 -3 24 -31 -11 -8 -7
3 5 103 211 -311 -45 -67 -73 -81 -99
-33 24 56

输出
1 5
1 2 3 4 5
2 5
9 8 7 6 5
3 12
23 23 22 22 13 3 5 5 3 -3
-7 -3

题目大意: 这道题目是求中位数,但是它和其他求中位数的不一样,我们平常求中位数是这样,如果是奇数,那就是最中间的那个数,如果是偶数,那就是中间的两位数和的平均值,但是这到题目不一样,他每次加入一个数的时候都要求当前数列的中位数,而且他的中位数是中间那个值并且是奇数。

题目分析

  • 这里我们需要用两个堆去存储数据,一个小顶堆(最大值在堆底),一个大顶堆(最大值在堆顶),这样我们称之为对顶堆,有了两个堆去存储数据,我们就能很快的求出中位数
  • 但是,我们可能会遇到一些情况,就是一个堆中的数据大大多于另外一个堆中的数据,这样我们就很难求出中位数,因为中位数不在堆顶,而我们要求中位数一定是要在两个堆的堆顶之一,所以这时候就需要数据转移,我们保证两个堆的数据数量相差不能超过2个,而且我们把中位数放在小顶堆的堆顶(读者可以自行选择),这样我们只需要每次取小顶堆的堆顶放在动态数组中,最后只需要遍历一次vector数组就可以把全部的中位数输出
  • 输出格式需要注意一下,每十个需要换行一下,而且最后还要判断是否有数据,因为是多组输入,所以这一点需要特别注意,简单来说就是每一行最后都要换行。
#include <bits/stdc++.h>
using namespace std;

vector<int> p;
//  保持小根堆中最小元素要大于大根堆中的全部元素
priority_queue<int, vector<int>, greater
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值