본문 바로가기
백준(C++)/정렬

[BOJ/C++]11651번_좌표 정렬하기2

by 코잼민 2024. 7. 10.

https://www.acmicpc.net/problem/11651

 

##문제 풀기 전 내가 알고 있었어야 할 개념:

★ Vector(or 다른 선형 자료구조)와 Sort() 사용방법 :
1_ Compare() 메소드 작성법 :

2_ qsort() + 배열  vs sort() + vector(또는 다른 선형 자료구조)  사용법 차이 비교

 

 

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
#include <iostream>
#include <vector>
#include <algorithm>
 
using namespace std;
 
void init() {
 
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
}
 
bool compare(pair<int,int> a, pair<intint> b) {
    if (a.second == b.second) {
        return a.first < b.first;
    }
    else {
        return a.second < b.second;
    }
}
 
int main() {
 
    init();
 
    int N;
    vector<pair<intint>> V;
 
    cin >> N;
 
    for (int i = 0; i < N; i++) {
        int x, y;
        cin >> x >> y;
        V.push_back(make_pair(x, y));
    }
 
    sort(V.begin(), V.end(), compare);
 
    for (int i = 0; i < N; i++) {
        cout << V[i].first << ' ' << V[i].second << '\n';
    }
 
    return 0;
}
cs

'백준(C++) > 정렬' 카테고리의 다른 글

[BOJ/C++]10814번_나이순 정렬  (0) 2024.07.11
[BOJ/C++]1181번_단어 정렬  (0) 2024.07.10
[BOJ/C++]10989번_수정렬하기3  (0) 2024.07.10
[BOJ/C++]25305번_커트라인  (0) 2024.07.10
[BOJ/C++]2587번_대표값2  (0) 2024.07.08