BZOJ1753: [Usaco2005 qua]Who's in the Middle
Posted Blue233333
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BZOJ1753: [Usaco2005 qua]Who's in the Middle相关的知识,希望对你有一定的参考价值。
问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 }
以上是关于BZOJ1753: [Usaco2005 qua]Who's in the Middle的主要内容,如果未能解决你的问题,请参考以下文章
bzoj1754[Usaco2005 qua]Bull Math*
BZOJ1754: [Usaco2005 qua]Bull Math
bzoj 1755: [Usaco2005 qua]Bank Interest模拟
bzoj 1754: [Usaco2005 qua]Bull Math高精乘法