0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-12-25 17:12:02 +00:00

P1873 砍树

R44441314
This commit is contained in:
Baoshuo Ren 2020-12-30 21:40:20 +08:00 committed by Baoshuo Ren
parent b605576bc0
commit 5d0e00416e
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

35
problem/P1873/P1873.cpp Normal file
View File

@ -0,0 +1,35 @@
#include <bits/stdc++.h>
using namespace std;
long long n, m, l, r, ans, a[1000005];
bool check(long long x) {
long long t = 0;
for (long long i = 1; i <= n; i++) {
if (a[i] > x) {
t += a[i] - x;
}
}
return t >= m;
}
int main() {
cin >> n >> m;
for (long long i = 1; i <= n; i++) {
cin >> a[i];
r = max(r, a[i]);
}
while (l <= r) {
long long mid = l + r >> 1;
if (check(mid)) {
l = (ans = mid) + 1;
}
else {
r = mid - 1;
}
}
cout << ans << endl;
return 0;
}