前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >1753: [Usaco2005 qua]Who's in the Middle

1753: [Usaco2005 qua]Who's in the Middle

作者头像
HansBug
发布2018-04-11 10:28:32
5170
发布2018-04-11 10:28:32
举报
文章被收录于专栏:HansBug's LabHansBug's Lab

1753: [Usaco2005 qua]Who's in the Middle

Time Limit: 5 Sec  Memory Limit: 64 MB

Submit: 290  Solved: 242

[Submit][Status][Discuss]

Description

FJ 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. 输入N个数,输出升序排列后中间那个数.

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

5 2 4 1 3 5 INPUT DETAILS: Five cows with milk outputs of 1..5

Sample Output

3 OUTPUT DETAILS: 1 and 2 are below 3; 4 and 5 are above 3.

HINT

Source

Gold

题解:难以想象这样的题目居然是usaco金组的= =,汗。。

其实直接排序就好啦,但是这样子太没意思了,于是来个简单的小优化(程序如下,很清晰,相信你们一定看得懂)

代码语言:javascript
复制
 1 /**************************************************************
 2     Problem: 1753
 3     User: HansBug
 4     Language: Pascal
 5     Result: Accepted
 6     Time:12 ms
 7     Memory:616 kb
 8 ****************************************************************/
 9  
10 var
11    i,j,k,l,m,n,x,y:longint;
12    a:array[0..100000] of longint;
13 procedure sort(l,r:longint);
14           var i,j,x,y:longint;
15           begin
16                if (l>m) or (r<m) then exit;   //here!!!^_^
17                i:=l;j:=r;x:=a[(l+r) div 2];
18                repeat
19                      while a[i]<x do inc(i);
20                      while a[j]>x do dec(j);
21                      if i<=j then
22                         begin
23                              y:=a[i];a[i]:=a[j];a[j]:=y;
24                              inc(i);dec(j);
25                         end;
26                until i>j;
27                if i<r then sort(i,r);
28                if l<j then sort(l,j);
29           end;
30  
31 begin
32      readln(n);m:=(1+n) div 2;
33      for i:=1 to n do readln(a[i]);
34      sort(1,n);
35      writeln(a[m]);
36      readln;
37 end.     
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2015-04-15 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 1753: [Usaco2005 qua]Who's in the Middle
  • Description
  • Input
  • Output
  • Sample Input
  • Sample Output
  • HINT
  • Source
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档