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

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

时间:2017-07-21 15:53:18      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:blog   using   amp   alt   max   display   stream   scan   play   

问n<=10000个点的中位数。

水题必有玄机!(然后浪费了半天在怎么O(n)求中位数并且最后放弃了)

技术分享
 1 #include<stdio.h>
 2 #include<string.h>
 3 #include<algorithm>
 4 #include<cstdlib>
 5 //#include<iostream>
 6 using namespace std;
 7 
 8 int n;
 9 #define maxn 10011
10 int a[maxn];
11 int main()
12 {
13     scanf("%d",&n);
14     for (int i=1;i<=n;i++) scanf("%d",&a[i]);
15     sort(a+1,a+1+n);
16     printf("%d\n",a[(n+1)/2]);
17     return 0;
18 }
View Code

 

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

标签:blog   using   amp   alt   max   display   stream   scan   play   

原文地址:http://www.cnblogs.com/Blue233333/p/7217394.html

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