반응형
알고리즘 분류
- 정렬
SOLUTION
import sys
N = int(sys.stdin.readline())
coordinates= []
for _ in range(N):
x, y = map(int, sys.stdin.readline().split())
coordinates.append([y,x]) # y좌표가 증가하는 순서가 먼저이므로 [y,x]를 append함
coordinates.sort() # sort()시 y좌표부터 오름차순으로 우선 정렬되고 그다음에 x좌표가 정렬된다.
for x, y in coordinates:
print(y,x)
'코딩테스트 대비 > BOJ' 카테고리의 다른 글
[Baekjoon/Python] 1978번: 소수 찾기 - 효과는 굉장했다! (0) | 2021.10.26 |
---|---|
[Baekjoon/Python] 1920번: 수 찾기 - 효과는 굉장했다! (0) | 2021.10.26 |
[Baekjoon/Python] 11650번: 좌표 정렬하기 - 효과는 굉장했다! (0) | 2021.10.26 |
[Baekjoon/Python] 10989번: 수 정렬하기3 - 효과는 굉장했다! (0) | 2021.10.26 |
[Baekjoon/Python] 7568번: 덩치 - 효과는 굉장했다! (0) | 2021.10.26 |