mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2025-01-12 12:11:59 +00:00
P3611 [USACO17JAN]Cow Dance Show S
R53543946
This commit is contained in:
parent
b09661055d
commit
b4bcc0d2ee
53
Luogu/problem/P3611/P3611.cpp
Normal file
53
Luogu/problem/P3611/P3611.cpp
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
#include <bits/stdc++.h>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int n, t, l, r, d[10005];
|
||||||
|
|
||||||
|
int check(int x) {
|
||||||
|
int f = 0;
|
||||||
|
priority_queue<int, vector<int>, greater<int>> q;
|
||||||
|
for (int i = 1; i <= x; i++) {
|
||||||
|
q.push(d[i]);
|
||||||
|
}
|
||||||
|
if (f > t) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
int z = x + 1, c = 0;
|
||||||
|
for (int i = z; i <= n; i++) {
|
||||||
|
f += q.top() - c;
|
||||||
|
c = q.top();
|
||||||
|
q.pop();
|
||||||
|
if (f > t) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
q.push(d[i] + c);
|
||||||
|
}
|
||||||
|
for (int i = 1; i <= x; i++) {
|
||||||
|
f += q.top() - c;
|
||||||
|
c = q.top();
|
||||||
|
q.pop();
|
||||||
|
if (f > t) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
cin >> n >> t;
|
||||||
|
for (int i = 1; i <= n; i++) {
|
||||||
|
cin >> d[i];
|
||||||
|
}
|
||||||
|
l = 0, r = n;
|
||||||
|
while (l <= r) {
|
||||||
|
int mid = l + r >> 1;
|
||||||
|
if (check(mid)) {
|
||||||
|
r = mid - 1;
|
||||||
|
} else {
|
||||||
|
l = mid + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cout << l << endl;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user