문제 링크
https://www.acmicpc.net/problem/11651
문제
문제 풀이
배열 내 어떠한 기준을 정해 정렬을 하기 위해서
lambda를 사용한다.
2차원 배열 내 두번째 원소를 첫 번째 기준으로, 첫 번째 원소를 두 번째 기준으로 하였다.
import sys
input = sys.stdin.readline
n = int(input())
array = []
for i in range(n):
[x, y] = list(map(int, input().split()))
array.append([x, y])
array.sort(key=lambda x : (x[1], x[0]))
for i in range(len(array)):
print(array[i][0], array[i][1])
'Algorithm > BOJ' 카테고리의 다른 글
[백준] 10825 국영수 (파이썬 python) (0) | 2022.01.20 |
---|---|
[백준] 10814 나이순 정렬 (파이썬 python) (0) | 2022.01.19 |
[백준] 11650 좌표 정렬하기 (파이썬 python) (0) | 2022.01.19 |
[백준] 9461 파도반 수열 (파이썬 python) (0) | 2022.01.19 |
[백준] 1699 제곱수의 합 (파이썬 python) (0) | 2022.01.19 |