0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-10 02:18:48 +00:00

P5740 【深基7.例9】最厉害的学生

R38710051
This commit is contained in:
Baoshuo Ren 2020-09-21 20:43:55 +08:00 committed by Baoshuo Ren
parent d92a049cea
commit 2723a7c1eb
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

39
problem/P5740/P5740.cpp Normal file
View File

@ -0,0 +1,39 @@
// R38710051
#include <bits/stdc++.h>
using namespace std;
struct node {
string name;
int chinese;
int math;
int english;
int all;
node() {
name = "";
chinese = math = english = all = 0;
}
void read() {
cin >> this->name >> this->chinese >> this->math >> this->english;
this->all = this->chinese + this->math + this->english;
}
};
bool cmp(node a, node b) {
return a.all > b.all;
}
int main() {
int n;
node a[1005];
cin >> n;
for (int i = 0; i < n; i++) {
a[i].read();
}
sort(a, a + n, cmp);
cout << a[0].name << ' ' << a[0].chinese << ' ' << a[0].math << ' ' << a[0].english << endl;
return 0;
}