티스토리 뷰
https://www.acmicpc.net/problem/11651
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
bool compare(const pair<int, int>&i, const pair<int, int>&j)
{
if (i.second == j.second){
// y(두번째)가 같은 경우 i(첫번째) 오름차순
return i.first < j.first;
}
else return i.second < j.second;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
vector<pair<int, int>> v;
int n, x, y;
cin >> n;
for(int i = 0; i < n; i++){
cin >> x >> y;
v.push_back(pair<int, int>(x,y));
}
sort(v.begin(), v.end(), compare);
for(int i = 0; i < v.size(); i++){
cout << v[i].first << ' ' << v[i].second << '\n';
}
}
'Algorithm > Baekjoon Online Judge' 카테고리의 다른 글
백준 1032 명령 프롬프트 [C++] (0) | 2021.08.08 |
---|---|
백준 10989 수 정렬하기 3 [C++] (0) | 2021.08.05 |
백준 1316 그룹단어체커 [C++] (0) | 2021.08.05 |
백준 17413 단어 뒤집기 2 [C++] (0) | 2021.08.05 |
백준 1748 수 이어쓰기 1 [C++] (0) | 2021.08.05 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Open API
- 넥사크로
- 백준
- CS
- 네트워크
- SQL
- 이클립스
- Thymeleaf
- 환경설정
- 부트스트랩
- svn
- 인턴
- HeidiSQL
- 프로그래머스
- 스프링
- C++
- 오라클
- C
- 스프링부트
- CSS
- Java
- JSP
- 오류
- JVM
- 국비교육
- 개발용어
- 데이터베이스
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함