-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Silver V] Title: 좌표 정렬하기 2, Time: 320 ms, Memory: 45364 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |