CF1118D2.Coffee and Coursework (Hard Version)
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The only difference between easy and hard versions is the constraints.
Polycarp has to write a coursework. The coursework consists of m pages.
Polycarp also has n cups of coffee. The coffee in the i -th cup Polycarp has ai caffeine in it. Polycarp can drink some cups of coffee (each one no more than once). He can drink cups in any order. Polycarp drinks each cup instantly and completely (i.e. he cannot split any cup into several days).
Surely, courseworks are not being written in a single day (in a perfect world of Berland, at least).
Let's consider some day of Polycarp's work. Consider Polycarp drinks k cups of coffee during this day and caffeine dosages of cups Polycarp drink during this day are ai1,ai2,…,aik . Then the first cup he drinks gives him energy to write ai1 pages of coursework, the second cup gives him energy to write max(0,ai2−1) pages, the third cup gives him energy to write max(0,ai3−2) pages, ..., the k -th cup gives him energy to write max(0,aik−k+1) pages.
If Polycarp doesn't drink coffee during some day, he cannot write coursework at all that day.
Polycarp has to finish his coursework as soon as possible (spend the minimum number of days to do it). Your task is to find out this number of days or say that it is impossible.
输入格式
The first line of the input contains two integers n and m ( 1≤n≤2⋅105 , 1≤m≤109 ) — the number of cups of coffee and the number of pages in the coursework.
The second line of the input contains n integers a1,a2,…,an ( 1≤ai≤109 ), where ai is the caffeine dosage of coffee in the i -th cup.
输出格式
If it is impossible to write the coursework, print -1. Otherwise print the minimum number of days Polycarp needs to do it.
输入输出样例
输入#1
5 8 2 3 1 1 2
输出#1
4
输入#2
7 10 1 3 4 2 1 4 2
输出#2
2
输入#3
5 15 5 5 5 5 5
输出#3
1
输入#4
5 16 5 5 5 5 5
输出#4
2
输入#5
5 26 5 5 5 5 5
输出#5
-1
说明/提示
In the first example Polycarp can drink fourth cup during first day (and write 1 page), first and second cups during second day (and write 2+(3−1)=4 pages), fifth cup during the third day (and write 2 pages) and third cup during the fourth day (and write 1 page) so the answer is 4 . It is obvious that there is no way to write the coursework in three or less days.
In the second example Polycarp can drink third, fourth and second cups during first day (and write 4+(2−1)+(3−2)=6 pages) and sixth cup during second day (and write 4 pages) so the answer is 2 . It is obvious that Polycarp cannot write the whole coursework in one day in this test.
In the third example Polycarp can drink all cups of coffee during first day and write 5+(5−1)+(5−2)+(5−3)+(5−4)=15 pages of coursework.
In the fourth example Polycarp cannot drink all cups during first day and should drink one of them during the second day. So during first day he will write 5+(5−1)+(5−2)+(5−3)=14 pages of coursework and during second day he will write 5 pages of coursework. This is enough to complete it.
In the fifth example Polycarp cannot write the whole coursework at all, even if he will drink one cup of coffee during each day, so the answer is -1.