You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
519 B

2 years ago
#include <bits/stdc++.h>
using namespace std;
int n, w;
const int N = 1e5 + 10;
int a[N];
// 能通过一部分50%左右不能AC原因是每次都排序O(n*n*logn)
int main() {
cin >> n >> w;
for (int i = 1; i <= n; i++) { // 1e5 *600=6e7
cin >> a[i]; // a[i]<=600
int cnt = max(1, i * w / 100); // 1,2
sort(a + 1, a + i + 1); // 从小到大排序
printf("%d ", a[i - cnt + 1]); // 大的在后面
}
return 0;
}