mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 14:18:47 +00:00
parent
5ba81b4eba
commit
c436e4bf97
50
Luogu/P8444/P8444.cpp
Normal file
50
Luogu/P8444/P8444.cpp
Normal file
@ -0,0 +1,50 @@
|
||||
#include <iostream>
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
using std::cin;
|
||||
using std::cout;
|
||||
const char endl = '\n';
|
||||
|
||||
const int N = 1e6 + 5;
|
||||
|
||||
int n;
|
||||
long long w;
|
||||
|
||||
int main() {
|
||||
std::ios::sync_with_stdio(false);
|
||||
cin.tie(nullptr);
|
||||
|
||||
cin >> n;
|
||||
|
||||
std::vector<int> a(n);
|
||||
|
||||
for (int &x : a) {
|
||||
cin >> x;
|
||||
}
|
||||
|
||||
std::sort(a.begin(), a.end());
|
||||
|
||||
cin >> w;
|
||||
|
||||
auto it = std::upper_bound(a.begin(), a.end(), w);
|
||||
|
||||
if (it == a.begin()) {
|
||||
cout << 0 << endl;
|
||||
|
||||
exit(0);
|
||||
} else {
|
||||
it--;
|
||||
}
|
||||
|
||||
int ans = 0;
|
||||
long long sum = 0;
|
||||
for (auto i = a.begin(); i != a.end(); i++) {
|
||||
if ((sum += *i) <= *it) ans++;
|
||||
else break;
|
||||
}
|
||||
|
||||
cout << ans << endl;
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user