标签: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; }
标签:algo print cccccc 快速 namespace sort pre bottom 快速选择
原文地址:http://www.cnblogs.com/invoid/p/6986485.html