hdu ACM Steps 1.3.1 第二小整数
Posted invoid
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu ACM Steps 1.3.1 第二小整数相关的知识,希望对你有一定的参考价值。
水题。
我还以为是快速选择,但快排直接就过了。
#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 第二小整数的主要内容,如果未能解决你的问题,请参考以下文章