Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- map
- UE4 커스텀로그
- C++최적화
- 애셋로드
- C++
- 언리얼엔진구조체
- 크리티컬섹션
- 선택정렬
- 데이터애셋
- 강참조
- 람다
- moreeffectiveC++
- UELOG
- 프로그래머스
- 람다사용정렬
- 언리얼가비지컬렉터
- 스마트포인터
- enumasByue
- 약참조
- unorder_map
- UML관련
- UE_LOG
- 자료구조
- dataasset
- 알고리즘
- 정렬
- BFS
- stl
- 정렬알고리즘
- 델리게이트
Archives
- Today
- Total
기억을 위한 기록들
[백준 11650: 좌표 정렬하기] - C++ 본문
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
struct Location
{
public:
Location(int x, int y)
: mX(x)
, mY(y)
{}
int mX;
int mY;
bool operator<(const Location& ref) const
{
if (ref.mX > mX)
{
return true;
}
if (ref.mX == mX)
{
if (ref.mY > mY)
return true;
else
return false;
}
else
return false;
}
};
int main(void)
{
vector<Location> list;
int n;
int x;
int y;
cin >> n;
for (int i = 0; i < n; i++)
{
cin >> x >> y;
list.push_back(Location(x, y));
}
sort(list.begin(), list.end());
for (int i = 0; i < n; i++)
{
cout << list[i].mX << " " << list[i].mY << '\n';
}
return 0;
}
'Coding Test - cpp > Sort' 카테고리의 다른 글
[백준 10867: 중복 빼고 정렬하기] - C++ (0) | 2021.03.24 |
---|---|
[백준 2108: 통계학] - C++ (0) | 2021.03.15 |
[백준 1181: 단어 정렬] - C++ (0) | 2021.02.19 |
[백준 1427: 소트인사이드] - C++ (0) | 2021.02.19 |
[백준 10989: 수 정렬하기3] - C++ (0) | 2021.02.16 |