CF1243A.Maximum Square
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Ujan decided to make a new wooden roof for the house. He has n rectangular planks numbered from 1 to n . The i -th plank has size ai×1 (that is, the width is 1 and the height is ai ).
Now, Ujan wants to make a square roof. He will first choose some of the planks and place them side by side in some order. Then he will glue together all of these planks by their vertical sides. Finally, he will cut out a square from the resulting shape in such a way that the sides of the square are horizontal and vertical.
For example, if Ujan had planks with lengths 4 , 3 , 1 , 4 and 5 , he could choose planks with lengths 4 , 3 and 5 . Then he can cut out a 3×3 square, which is the maximum possible. Note that this is not the only way he can obtain a 3×3 square.
What is the maximum side length of the square Ujan can get?
输入格式
The first line of input contains a single integer k ( 1≤k≤10 ), the number of test cases in the input.
For each test case, the first line contains a single integer n ( 1≤n≤1000 ), the number of planks Ujan has in store. The next line contains n integers a1,…,an ( 1≤ai≤n ), the lengths of the planks.
输出格式
For each of the test cases, output a single integer, the maximum possible side length of the square.
输入输出样例
输入#1
4 5 4 3 1 4 5 4 4 4 4 4 3 1 1 1 5 5 5 1 1 5
输出#1
3 4 1 3
说明/提示
The first sample corresponds to the example in the statement.
In the second sample, gluing all 4 planks will result in a 4×4 square.
In the third sample, the maximum possible square is 1×1 and can be taken simply as any of the planks.