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 ≤ 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.
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.
来源 Greater New York Regional 2009
给出 n n n 个数,求出前 i i i 个数的中位数
首先是想到了用链表维护一个有序序列,当输入个数为奇数时,记录中位数。 但后来发现自己很难用代码实现(当然这种方法是对的) 于是决定 建立两个堆,对这两个堆进行操作。一个堆负责存储大于等于中位数的数,使用小根堆;另一个堆负责存储小于等于中位数的数,使用大根堆。 我们在每次插入的时候,都要和中位数比较,比中位数大的进入小根堆,比中位数小的进入大根堆。 如果大根堆的数字比小根堆的数字多2,那么将大根堆的一个数字进入小根堆。 如果小根堆的数字比大根堆的数字多2,那么将小根堆的一个数字进入大根堆。 (注:中位数是数字多的堆的堆顶) 在当输入个数为奇数时,记录中位数。