码迷,mamicode.com
首页 > 其他好文 > 详细

URAL1306-Sequence Median(优先队列)

时间:2014-08-15 21:13:00      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   io   strong   for   ar   art   

1306. Sequence Median

Time limit: 1.0 second
Memory limit: 1 MB
Language limit: C, C++, Pascal
Given a sequence of N nonnegative integers. Let‘s define the median of such sequence. If N is odd the median is the element with stands in the middle of the sequence after it is sorted. One may notice that in this case the median has position (N+1)/2 in sorted sequence if sequence elements are numbered starting with 1. If N is even then the median is the semi-sum of the two "middle" elements of sorted sequence. I.e. semi-sum of the elements in positions N/2 and (N/2)+1 of sorted sequence. But original sequence might be unsorted.
Your task is to write program to find the median of given sequence.

Input

The first line of input contains the only integer number N — the length of the sequence. Sequence itself follows in subsequent lines, one number in a line. The length of the sequence lies in the range from 1 to 250000. Each element of the sequence is a positive integer not greater than 231?1 inclusive.

Output

You should print the value of the median with exactly one digit after decimal point.

Sample

input output
4
3
6
4
5
4.5
Problem Source: II Collegiate Students Urals Programming Contest. Yekaterinburg, April 3-4, 1998
题意:求25000个数的中位数,但内存卡的很死,不能完全开下数组
思路:只要用优先队列维护前二分之一加一大的数即可。
#include <iostream>
#include <cstdio>
#include <cstring>
#include <vector>
#include <string>
#include <algorithm>
#include <queue>
using namespace std;
priority_queue<int, vector<int>, greater<int> > pq;
int main(){
    int n;
    while(~scanf("%d",&n)){
        int cnt = n/2+1;
        while(!pq.empty()) pq.pop();
        for(int i = 0; i < n; i++){
            int d;
            cin >> d;
            if(pq.size()<cnt){
                pq.push(d);
            }
            else if(pq.top()<d){
                pq.pop();
                pq.push(d);
            }
        }
        double median;
        if(n&1){
            median = pq.top();
        }else{
            int a = pq.top(); pq.pop();
            int b = pq.top();
            median = (a*1.0+b*1.0)/2.0;
        }
        printf("%.1lf\n",median);

    }
    return 0;
}


URAL1306-Sequence Median(优先队列),布布扣,bubuko.com

URAL1306-Sequence Median(优先队列)

标签:style   color   os   io   strong   for   ar   art   

原文地址:http://blog.csdn.net/mowayao/article/details/38589853

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!