Skip to content

Commit

Permalink
[Silver V] Title: 좌표 정렬하기 2, Time: 356 ms, Memory: 53948 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
boyamie committed Jul 2, 2024
1 parent 7be1296 commit 6d98ffd
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
28 changes: 28 additions & 0 deletions 백준/Silver/11651. 좌표 정렬하기 2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# [Silver V] 좌표 정렬하기 2 - 11651

[문제 링크](https://www.acmicpc.net/problem/11651)

### 성능 요약

메모리: 53948 KB, 시간: 356 ms

### 분류

정렬

### 제출 일자

2024년 7월 2일 13:26:42

### 문제 설명

<p>2차원 평면 위의 점 N개가 주어진다. 좌표를 y좌표가 증가하는 순으로, y좌표가 같으면 x좌표가 증가하는 순서로 정렬한 다음 출력하는 프로그램을 작성하시오.</p>

### 입력

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

### 출력

<p>첫째 줄부터 N개의 줄에 점을 정렬한 결과를 출력한다.</p>

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import sys
input = sys.stdin.readline
n = int(input())
pyo = []
for i in range(n):
x, y = map(int, input().split())
pyo.append([x,y])

pyo.sort(key=lambda x: (x[1],x[0]))
for i in pyo:
print(i[0], i[1])

0 comments on commit 6d98ffd

Please sign in to comment.