记录编号 |
494871 |
评测结果 |
AAAAAAAAAA |
题目名称 |
中考分数 |
最终得分 |
100 |
用户昵称 |
增强型图元文件 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.005 s |
提交时间 |
2018-04-14 17:24:14 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include <iostream>
#include <iomanip>
#include <cmath>
#include <cstdio>
#include <algorithm>
#include <vector>
//#define de
using namespace std;
struct s{
int mark;
int index;
};
bool comp(s x,s y){
return x.mark>y.mark;
}
int main(){
#ifndef de
freopen("mark.in","r",stdin);
freopen("mark.out","w",stdout);
#endif
int n2,m2,chaxun=0,dang=0;int j=0;
cin>>n2>>m2;
s n[1000];
for(int i=0;i<n2;i++){
cin>>n[i].mark;
n[i].index=i;
}
cin>>chaxun;
dang=n2/m2;
sort(n,n+n2,comp);
for(;j<m2;j++){
for(int i=j*dang;i<dang*(j+1);i++){
if(n[i].index==chaxun-1){
cout<<j+1;
return 0;
}
}
}
}