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.

34 lines
665 B

2 years ago
#include <bits/stdc++.h>
using namespace std;
struct Student {
string num;
float score;
};
//对比的方法
/*
,
*/
bool compare(const Student &x, const Student &y) {
return x.score > y.score;
}
int main() {
int n, k;
cin >> n >> k;
//创建动态数组
Student *s = new Student[n];
for (int i = 0; i < n; ++i) {
cin >> s[i].num >> s[i].score;
}
//排序
sort(s, s + n, compare);
//输出
cout << s[k - 1].num << " " << s[k - 1].score << endl;
//释放内存
delete[]s;
return 0;
}