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

hdu ACM Steps 1.3.1 第二小整数

时间:2017-06-11 22:18:56      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:algo   print   cccccc   快速   namespace   sort   pre   bottom   快速选择   

水题。

我还以为是快速选择,但快排直接就过了。

#include<cstdio>
#include<algorithm>
using namespace std;
const int maxn = 500000 + 10;

int a[maxn];
int T,n;

int main() {
    scanf("%d",&T);
    while(T--) {
        scanf("%d",&n);
        for(int i=1;i<=n;i++) scanf("%d",&a[i]);
        sort(a+1,a+n+1);
        printf("%d\n",a[2]);        
    }
    return 0;    
}

hdu ACM Steps 1.3.1 第二小整数

标签:algo   print   cccccc   快速   namespace   sort   pre   bottom   快速选择   

原文地址:http://www.cnblogs.com/invoid/p/6986485.html

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