博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Educational Codeforces Round 69 (Rated for Div. 2) A - DIY Wooden Ladder
阅读量:5102 次
发布时间:2019-06-13

本文共 2646 字,大约阅读时间需要 8 分钟。

 

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.

Example

input

4

4

1 3 1 3

3

3 3 2

5

2 3 3 4 2

3

1 1 2

output

2

1

2

0

Note

Examples for the queries 1−3 are shown at the image in the legend section.

The Russian meme to express the quality of the ladders:

 

 

题意:题目意思就是 定义k阶梯子为两边各一块木板长度至少k+1,中间k块木板至少为1 。

         问 给你n块木板,最多能搭成几阶的梯子。

思路:显然对n块木板排序之后,取最长的两块木板搭旁边的两块梯子为最优解,

  然后就是比较 最长的这两块木板的小的这块长度-1 和 剩余木板数量 的极小值为答案。

 

1 #include
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #include
10 using namespace std;11 #define ll long long 12 const int mod=1e9+7;13 const int inf=1e9+7;14 15 const int maxn=1e5+5;16 int num[maxn];17 18 int main()19 {20 ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);21 22 int T;23 cin>>T;24 int n;25 while(T--)26 {27 cin>>n;28 29 for(int i=0;i
>num[i];31 32 sort(num,num+n);33 34 cout<
<

 

转载于:https://www.cnblogs.com/xwl3109377858/p/11239976.html

你可能感兴趣的文章
前端开发利器 - WebStorm
查看>>
[原创]java WEB学习笔记91:Hibernate学习之路-- -HQL 迫切左外连接,左外连接,迫切内连接,内连接,关联级别运行时的检索策略 比较。理论,在于理解...
查看>>
上传图片并实现本地预览(1)
查看>>
C# 下载
查看>>
windows 系统新建 vue 项目的坑
查看>>
c#线程1
查看>>
使用docker部署skywalking
查看>>
如何设计自动化测试的代码结构
查看>>
样本打散后计算单特征 NDCG
查看>>
el表达式
查看>>
453. Minimum Moves to Equal Array Elements 一次改2个数,变成统一的
查看>>
过年要回家,随手写了个12306买票的脚本,成功抢到几张卧铺.
查看>>
Linux关机命令详解
查看>>
【基础最小生成树】Jungle Roads
查看>>
HDU 1087 Super Jumping! Jumping! Jumping!(DP)
查看>>
Spring Boot 依赖包讲解
查看>>
C++类成员空间分配和虚函数表
查看>>
关于微信隐藏分享按钮的心得
查看>>
Weave 网络结构分析 - 每天5分钟玩转 Docker 容器技术(64)
查看>>
第一章-操作系统概论
查看>>