Codeforces 1197A - DIY Wooden Ladder
Let’s denote a k-step ladder as the following structure: exactly k+2 wooden planks, of which
● two planks of length at least k+1 — the base of the ladder;
● k planks of length at least 1 — the steps of the ladder;
Note that neither the base planks, nor the steps planks are required to be equal.
For example, ladders 1 and 3 are correct 2-step ladders and ladder 2 is a correct 1-step ladder. On the first picture the lengths of planks are [3,3] for the base and [1] for the step. On the second picture lengths are [3,3] for the base and [2] for the step. On the third picture lengths are [3,4] for the base and [2,3] for the steps.
You have n planks. The length of the i-th planks is ai. You don’t have a saw, so you can’t cut the planks you have. Though you have a hammer and nails, so you can assemble the improvised “ladder” from the planks.
The question is: what is the maximum number k such that you can choose some subset of the given planks and assemble a k-step ladder using them?
Input:
The first line contains a single integer T (1≤T≤100) — the number of queries. The queries are independent.
Each query consists of two lines. The first line contains a single integer n (2≤n≤105) — the number of planks you have.
The second line contains n integers a1,a2,…,an (1≤ai≤105) — the lengths of the corresponding planks.
It’s guaranteed that the total number of planks from all queries doesn’t exceed 105.
Output:
Print T integers — one per query. The i-th integer is the maximum number k, such that you can choose some subset of the planks given in the i-th query and assemble a k-step ladder using them.
Print 0 if you can’t make even 1-step ladder from the given set of planks.
範例:
input:
1 | 4 |
output:
1 | 2 |
Note:
題意:
第一個輸入為T個木梯
第二個輸入為N個木條
接著輸入a1….an個木條長度
題目問你他要請你幫他隨便造出一個木梯,但是因為沒有工具,所以木頭不行切割,利用這些木頭可以造出幾個階梯的木梯?(木頭間格距離為1)
思路:
在輸入的過程中尋找第一長的木條max1與第二長的木條max2,將第二長的木條長度減去1,因為最上面木梯不能建階梯,接著我們把第二長木條長度和剩餘的木條數相比,如果木條數較小,代表他無法把階梯建造完全,會在中途用光木條數,此時木條數就是最多可以造出幾個階梯數,如果木條數大於第二常木條長度,表示他可以完全建造完畢,所以此時第二長的木條長度-1即是可以造出的階梯數.