A14017 | Power Sockets
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
// We decided to drop the legend about the power sockets but feel free to come up with your own :^)
Define a chain:
- a chain of length $1$ is a single vertex;
- a chain of length $x$ is a chain of length $x-1$ with a new vertex connected to the end of it with a single edge.
You are given $n$ chains of lengths $l_1, l_2, \dots, l_n$ . You plan to build a tree using some of them.
- Each vertex of the tree is either white or black.
- The tree initially only has a white root vertex.
- All chains initially consist only of white vertices.
- You can take one of the chains and connect any of its vertices to any white vertex of the tree with an edge. The chain becomes part of the tree. Both endpoints of this edge become black.
- Each chain can be used no more than once.
- Some chains can be left unused.
The distance between two vertices of the tree is the number of edges on the shortest path between them.
If there is at least $k$ white vertices in the resulting tree, then the value of the tree is the distance between the root and the $k$ -th closest white vertex.
What's the minimum value of the tree you can obtain? If there is no way to build a tree with at least $k$ white vertices, then print -1.
Define a chain:
- a chain of length $1$ is a single vertex;
- a chain of length $x$ is a chain of length $x-1$ with a new vertex connected to the end of it with a single edge.
You are given $n$ chains of lengths $l_1, l_2, \dots, l_n$ . You plan to build a tree using some of them.
- Each vertex of the tree is either white or black.
- The tree initially only has a white root vertex.
- All chains initially consist only of white vertices.
- You can take one of the chains and connect any of its vertices to any white vertex of the tree with an edge. The chain becomes part of the tree. Both endpoints of this edge become black.
- Each chain can be used no more than once.
- Some chains can be left unused.
The distance between two vertices of the tree is the number of edges on the shortest path between them.
If there is at least $k$ white vertices in the resulting tree, then the value of the tree is the distance between the root and the $k$ -th closest white vertex.
What's the minimum value of the tree you can obtain? If there is no way to build a tree with at least $k$ white vertices, then print -1.
输入格式
The first line contains two integers $n$ and $k$ ( $1 \le n \le 2 \cdot 10^5$ , $2 \le k \le 10^9$ ) — the number of chains and the minimum number of white vertices a tree should have to have a value.
The second line contains $n$ integers $l_1, l_2, \dots, l_n$ ( $3 \le l_i \le 2 \cdot 10^5$ ) — the lengths of the chains.
The second line contains $n$ integers $l_1, l_2, \dots, l_n$ ( $3 \le l_i \le 2 \cdot 10^5$ ) — the lengths of the chains.
输出格式
Print a single integer. If there is no way to build a tree with at least $k$ white vertices, then print -1. Otherwise, print the minimum value the tree can have.
输入输出样例
输入 #1
1 2 3
输出 #1
2
输入 #2
3 3 4 3 3
输出 #2
3
输入 #3
3 5 4 3 4
输出 #3
4
输入 #4
2 10 5 7
输出 #4
-1
You are allowed to not use all the chains, so it's optimal to only use chain of length $4$ in the second example.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted