0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 23:45:25 +00:00
OI-codes/Luogu/P7072/P7072.cpp

16 lines
330 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
int n, w, t;
vector<int> score;
cin >> n >> w;
for (int i = 1; i <= n; i++) {
cin >> t;
score.insert(lower_bound(score.begin(), score.end(), t), t);
cout << score[score.size() - max(1, i * w / 100)] << ' ';
}
return 0;
}