상세 컨텐츠

본문 제목

[백준(BOJ)] 11650번: 좌표 정렬하기 (정렬, C++)

PROGRAMMING/Algorithm

by koharin 2021. 3. 10. 11:17

본문

728x90
반응형
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int main(){
    int N;
    scanf("%d", &N);
    vector<pair<int, int>> m;

    for(int i=0; i<N; i++){
        int x, y;
        scanf("%d %d", &x, &y);
        m.push_back(pair<int, int>(x,y));
    }
    sort(m.begin(), m.end());
    for(auto iter: m) printf("%d %d\n", iter.first, iter.second);
} 
728x90
반응형

관련글 더보기