This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#include <bits/stdc++.h>
using namespace std;
int n, w;
const int N = 610;
vector<int> f;
int main() {
cin >> n >> w;
for (int i = 1; i <= n; i++) {
int cnt = max(1, i * w / 100); //目前的获奖人数
int x;
cin >> x;
// 用途:在一个用序的数组中, 插入一个新数,最终还要是一个有序的数组
// 办法:vector插入排序 = 二分查找+vector插入
f.insert(upper_bound(f.begin(), f.end(), x), x);
printf("%d ", f[i - cnt]);
}
return 0;