当前位置:网站首页>POJ - 3784 Running Median(对顶堆)
POJ - 3784 Running Median(对顶堆)
2022-07-07 05:27:00 【WA_自动机】
POJ - 3784 Running Median(对顶堆)
Description
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.
Input
The first line of input contains a single integer 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 ≤ 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.
Output
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.
Sample Input
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
Sample Output
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
开两个堆,一个是大根堆,一个是小根堆,然后小于中位数的都放在大根堆,大于中位数的都放在小根堆,如果说,一个堆的个数大于了当前序列的 1 2 \frac{1}{2} 21,那么就将多余的数移过去,直到两个堆数量相等。
#include<cstdio>
#include<vector>
#include<queue>
using namespace std;
int main()
{
int T;scanf("%d",&T);
while(T--)
{
int m,n;scanf("%d%d",&m,&n);
priority_queue<int> max_heap;
priority_queue<int,vector<int>,greater<int> > min_heap;
printf("%d %d\n",m,(n+1)/2);
int cnt=0;
for(int i=0;i<n;i++)
{
int t;scanf("%d",&t);
max_heap.push(t);
if(min_heap.size() && min_heap.top() < max_heap.top())
{
int a=min_heap.top(),b=max_heap.top();
min_heap.pop(),max_heap.pop();
min_heap.push(b),max_heap.push(a);
}
if(max_heap.size()>min_heap.size()+1)
{
min_heap.push(max_heap.top());
max_heap.pop();
}
if(i%2==0)
{
printf("%d ",max_heap.top());
if(++cnt%10==0) puts("");
}
}
if(cnt%10) puts("");
}
return 0;
}
边栏推荐
猜你喜欢

Famine cloud service management script

Openvscode cloud ide joins rainbow integrated development system

打通法律服务群众“最后一公里”,方正璞华劳动人事法律自助咨询服务平台频获“点赞”

Lua 编程学习笔记

Xcit learning notes

Pvtv2--pyramid vision transformer V2 learning notes

opencv学习笔记二——图像基本操作

归并排序和非比较排序

opencv学习笔记三——图像平滑/去噪处理

轻松上手Fluentd,结合 Rainbond 插件市场,日志收集更快捷
随机推荐
藏书馆App基于Rainbond实现云原生DevOps的实践
Opencv learning notes 1 -- several methods of reading images
Réplication de vulnérabilité - désrialisation fastjson
使用BiSeNet实现自己的数据集
探索STEAM艺术设计中的创造力
Analyzing the influence of robot science and technology development concept on Social Research
Practice of implementing cloud native Devops based on rainbow library app
云原生存储解决方案Rook-Ceph与Rainbond结合的实践
Several ways of lambda used in functions in kotlin (higher-order functions)
The field value in Splunk subquery fuzzy matching CSV is*
eBPF Cilium实战(1) - 基于团队的网络隔离
使用SwinUnet训练自己的数据集
解析机器人科技发展观对社会研究论
漏洞复现-easy_tornado
OpenVSCode云端IDE加入Rainbond一体化开发体系
Caractéristiques de bisenet
Kotlin combines flatmap for filtering and zip merge operators
【Go ~ 0到1 】 第七天 获取时间戳,时间比较,时间格式转换,Sleep与定时器
Tuowei information uses the cloud native landing practice of rainbow
Go语言中,函数是一种类型