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

Posted lokiii

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj 1753: [Usaco2005 qua]Who's in the Middle排序相关的知识,希望对你有一定的参考价值。

……这可能是早年Pascal盛行的时候考排序的吧居然还是Glod……

#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
const int N=100005;
int n,a[N];
int read()
{
    int r=0,f=1;
    char p=getchar();
    while(p>‘9‘||p<‘0‘)
    {
        if(p==‘-‘)
            f=-1;
        p=getchar();
    }
    while(p>=‘0‘&&p<=‘9‘)
    {
        r=r*10+p-48;
        p=getchar();
    }
    return r*f;
}
int main()
{
    n=read();
    for(int i=1;i<=n;i++)
        a[i]=read();
    sort(a+1,a+1+n);
    printf("%d\n",a[(1+n)>>1]);
    return 0;
}

以上是关于bzoj 1753: [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高精乘法

[高精度乘法]BZOJ 1754 [Usaco2005 qua]Bull Math

[BZOJ1677][Usaco2005 Jan]Sumsets 求和