CF1469F.Power Sockets

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

// 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 11 is a single vertex;
  • a chain of length xx is a chain of length x1x-1 with a new vertex connected to the end of it with a single edge.

You are given nn chains of lengths l1,l2,,lnl_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 kk white vertices in the resulting tree, then the value of the tree is the distance between the root and the kk -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 kk white vertices, then print -1.

输入格式

The first line contains two integers nn and kk ( 1n21051 \le n \le 2 \cdot 10^5 , 2k1092 \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 nn integers l1,l2,,lnl_1, l_2, \dots, l_n ( 3li21053 \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 kk 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 44 in the second example.

首页