HDU1157 Who’s in the Middle

來源:互聯網
上載者:User
                                             
Who's in the Middle

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 7034    Accepted Submission(s): 3432

Problem DescriptionFJ is surveying his herd to find the most average cow. He wants to know how much milk this 'median' cow gives: half of the cows give as much or more than the median; half give as much or less.

Given an odd number of cows N (1 <= N < 10,000) and their milk output (1..1,000,000), find the median amount of milk given such that at least half the cows give the same amount of milk or more and at least half give the same or less. 

Input* Line 1: A single integer N

* Lines 2..N+1: Each line contains a single integer that is the milk output of one cow. 

Output* Line 1: A single integer that is the median milk output. 

Sample Input

524135
 

Sample Output

3Hint INPUT DETAILS: Five cows with milk outputs of 1..5 OUTPUT DETAILS: 1 and 2 are below 3; 4 and 5 are above 3. 
 

SourceUSACO 2004 November 

Recommendmcqsmall


解題思路:好吧,我表示我很邪惡,拿了老師給的動歸題用庫函數直接排序做了,不知道用sort()排序會不會逾時呢?恩,等會試一下。
思路,簡單啦,中位元嗎,直接把數列排序就好了,直接去中間的那一位元輸出即可啦!

01463876 2013-07-29 10:53:42 Accepted 1006 0 MS 352 KB Visual C++ try it

效果不可思意的好,本來以為有可能逾時,沒想到竟然0ms飄過,STL強大啊!

#include<stdio.h>#include<queue>using namespace std;int main(){    int n,i,x;    priority_queue<int> q;    while(scanf("%d",&n)!=EOF)    {        for(i=0;i<n;i++)        {            scanf("%d",&x);            q.push(x);   //直接進入優先隊列        }        n/=2;        for(i=0;i<n;i++)  //彈出前n/2個數            q.pop();        printf("%d\n",q.top()); //直接輸出即可,排序後第n/2+1個數,即中位元        q.pop();   //把隊列中得元素全部彈出,以免影響下一個測試資料{要是優先隊列能有個清空隊列的方法,就方便省時了}        for(i=0;i<n;i++)            q.pop();    }    return 0;}
8750179 2013-07-29 11:09:21 Accepted 1157 0MS 312K 286 B C++ try it
#include<stdio.h>#include<algorithm>using namespace std;int main(){    int n,i;    int a[10000];    while(scanf("%d",&n)!=EOF)    {        for(i=0;i<n;i++)            scanf("%d",&a[i]);        sort(a,a+n);           //直接排序        printf("%d\n",a[n/2]);    }    return 0;}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.