forked from ndb796/python-for-coding-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
11.cpp
40 lines (33 loc) · 801 Bytes
/
11.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
#include <bits/stdc++.h>
using namespace std;
class Student {
public:
string name;
int score;
Student(string name, int score) {
this->name = name;
this->score = score;
}
// 정렬 기준은 '점수가 낮은 순서'
bool operator <(Student &other) {
return this->score < other.score;
}
};
int n;
vector<Student> v;
int main(void) {
// N을 입력받기
cin >> n;
// N명의 학생 정보를 입력받아 리스트에 저장
for (int i = 0; i < n; i++) {
string name;
int score;
cin >> name >> score;
v.push_back(Student(name, score));
}
sort(v.begin(), v.end());
// 정렬이 수행된 결과를 출력
for(int i = 0; i < n; i++) {
cout << v[i].name << ' ';
}
}