题解
2023-10-18 22:33:20
发布于:吉林
3阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int n[700];
int main(){
int num,fl,s,op=0,max1=-1;
cin>>num>>fl;
for(int i=1;i<=num;i++){
cin>>s;
max1=max(s,max1);
n[s]++;
int y=i*fl*0.01;
int s=max(1,y);
for(int j=max1;j>=0;j--){
if(n[j]>0)op+=n[j];
if(op>=s){
cout<<j<<" ";
break;
}
}
op=0;
}
return 0;
}
这里空空如也
有帮助,赞一个