보안을 그리다, 훈이

[Baekjoon/Python3] 11651번 좌표 정렬하기 2 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 11651번 좌표 정렬하기 2

HooNeee 2020. 12. 7. 00:36

[Baekjoon/Python3] 11651번 좌표 정렬하기 2

 

www.acmicpc.net/problem/11651

 

11651번: 좌표 정렬하기 2

첫째 줄에 점의 개수 N (1 ≤ N ≤ 100,000)이 주어진다. 둘째 줄부터 N개의 줄에는 i번점의 위치 xi와 yi가 주어진다. (-100,000 ≤ xi, yi ≤ 100,000) 좌표는 항상 정수이고, 위치가 같은 두 점은 없다.

www.acmicpc.net

 

n = int(input())
locations = []
for i in range(n):
    locations.append(list(map(int, input().split())))
locations.sort(key = lambda lo: [lo[1], lo[0]])	# Priority
for j in locations:
    print(j[0], j[1])
Comments