-
Notifications
You must be signed in to change notification settings - Fork 843
/
1.cpp
58 lines (52 loc) · 1.48 KB
/
1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include <bits/stdc++.h>
using namespace std;
class Student {
public:
string name;
int kor;
int eng;
int m;
Student(string name, int kor, int eng, int m) {
this->name = name;
this->kor = kor;
this->eng = eng;
this->m = m;
}
/*
[ 정렬 기준 ]
1) 두 번째 원소를 기준으로 내림차순 정렬
2) 두 번째 원소가 같은 경우, 세 번째 원소를 기준으로 오름차순 정렬
3) 세 번째 원소가 같은 경우, 네 번째 원소를 기준으로 내림차순 정렬
4) 네 번째 원소가 같은 경우, 첫 번째 원소를 기준으로 오름차순 정렬
*/
bool operator <(Student &other) {
if (this->kor == other.kor && this->eng == other.eng && this->m == other.m) {
return this->name < other.name;
}
if (this->kor == other.kor && this->eng == other.eng) {
return this->m > other.m;
}
if (this->kor == other.kor) {
return this->eng < other.eng;
}
return this->kor > other.kor;
}
};
int n;
vector<Student> v;
int main(void) {
cin >> n;
for (int i = 0; i < n; i++) {
string name;
int kor;
int eng;
int m;
cin >> name >> kor >> eng >> m;
v.push_back(Student(name, kor, eng, m));
}
sort(v.begin(), v.end());
// 정렬된 학생 정보에서 이름만 출력
for (int i = 0; i < n; i++) {
cout << v[i].name << '\n';
}
}