Skip to content

Commit

Permalink
[Silver V] Title: 좌표 정렬하기 2, Time: 320 ms, Memory: 45364 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
srlee056 committed Mar 30, 2024
1 parent d4c369d commit a9188e2
Show file tree
Hide file tree
Showing 2 changed files with 42 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)

### 성능 요약

메모리: 45364 KB, 시간: 320 ms

### 분류

정렬

### 제출 일자

2024년 3월 30일 20:11:00

### 문제 설명

<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,14 @@
from sys import stdin

n = int(stdin.readline())

points = []

for _ in range(n):
x, y = map(int, stdin.readline().split())
points.append((y, x))

points_sorted = sorted(points)

for y, x in points_sorted:
print(x, y)

0 comments on commit a9188e2

Please sign in to comment.