-
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: 덩치, Time: 40 ms, Memory: 31120 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
97 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,69 @@ | ||
# [Silver V] 덩치 - 7568 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/7568) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 31120 KB, 시간: 40 ms | ||
|
||
### 분류 | ||
|
||
브루트포스 알고리즘, 구현 | ||
|
||
### 제출 일자 | ||
|
||
2024년 3월 30일 19:37:17 | ||
|
||
### 문제 설명 | ||
|
||
<p>우리는 사람의 덩치를 키와 몸무게, 이 두 개의 값으로 표현하여 그 등수를 매겨보려고 한다. 어떤 사람의 몸무게가 x kg이고 키가 y cm라면 이 사람의 덩치는 (x, y)로 표시된다. 두 사람 A 와 B의 덩치가 각각 (x, y), (p, q)라고 할 때 x > p 그리고 y > q 이라면 우리는 A의 덩치가 B의 덩치보다 "더 크다"고 말한다. 예를 들어 어떤 A, B 두 사람의 덩치가 각각 (56, 177), (45, 165) 라고 한다면 A의 덩치가 B보다 큰 셈이 된다. 그런데 서로 다른 덩치끼리 크기를 정할 수 없는 경우도 있다. 예를 들어 두 사람 C와 D의 덩치가 각각 (45, 181), (55, 173)이라면 몸무게는 D가 C보다 더 무겁고, 키는 C가 더 크므로, "덩치"로만 볼 때 C와 D는 누구도 상대방보다 더 크다고 말할 수 없다.</p> | ||
|
||
<p>N명의 집단에서 각 사람의 덩치 등수는 자신보다 더 "큰 덩치"의 사람의 수로 정해진다. 만일 자신보다 더 큰 덩치의 사람이 k명이라면 그 사람의 덩치 등수는 k+1이 된다. 이렇게 등수를 결정하면 같은 덩치 등수를 가진 사람은 여러 명도 가능하다. 아래는 5명으로 이루어진 집단에서 각 사람의 덩치와 그 등수가 표시된 표이다.</p> | ||
|
||
<table class="table table-bordered" style="width: 35%;"> | ||
<thead> | ||
<tr> | ||
<th style="text-align: center;">이름</th> | ||
<th style="text-align: center;">(몸무게, 키)</th> | ||
<th style="text-align: center;">덩치 등수</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td style="text-align: center;">A</td> | ||
<td style="text-align: center;">(55, 185)</td> | ||
<td style="text-align: center;">2</td> | ||
</tr> | ||
<tr> | ||
<td style="text-align: center;">B</td> | ||
<td style="text-align: center;">(58, 183)</td> | ||
<td style="text-align: center;">2</td> | ||
</tr> | ||
<tr> | ||
<td style="text-align: center;">C</td> | ||
<td style="text-align: center;">(88, 186)</td> | ||
<td style="text-align: center;">1</td> | ||
</tr> | ||
<tr> | ||
<td style="text-align: center;">D</td> | ||
<td style="text-align: center;">(60, 175)</td> | ||
<td style="text-align: center;">2</td> | ||
</tr> | ||
<tr> | ||
<td style="text-align: center;">E</td> | ||
<td style="text-align: center;">(46, 155)</td> | ||
<td style="text-align: center;">5</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
<p>위 표에서 C보다 더 큰 덩치의 사람이 없으므로 C는 1등이 된다. 그리고 A, B, D 각각의 덩치보다 큰 사람은 C뿐이므로 이들은 모두 2등이 된다. 그리고 E보다 큰 덩치는 A, B, C, D 이렇게 4명이므로 E의 덩치는 5등이 된다. 위 경우에 3등과 4등은 존재하지 않는다. 여러분은 학생 N명의 몸무게와 키가 담긴 입력을 읽어서 각 사람의 덩치 등수를 계산하여 출력해야 한다.</p> | ||
|
||
### 입력 | ||
|
||
<p>첫 줄에는 전체 사람의 수 N이 주어진다. 그리고 이어지는 N개의 줄에는 각 사람의 몸무게와 키를 나타내는 양의 정수 x와 y가 하나의 공백을 두고 각각 나타난다.</p> | ||
|
||
### 출력 | ||
|
||
<p>여러분은 입력에 나열된 사람의 덩치 등수를 구해서 그 순서대로 첫 줄에 출력해야 한다. 단, 각 덩치 등수는 공백문자로 분리되어야 한다.</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,28 @@ | ||
import sys | ||
|
||
input = sys.stdin.readline | ||
|
||
n = int(input().strip()) | ||
|
||
wh_list = [] | ||
for i in range(n): | ||
weight, height = map(int, input().split()) | ||
wh_list.append((weight, height, i)) | ||
|
||
wh_sorted = sorted(wh_list, reverse=True) | ||
|
||
# print(wh_sorted) | ||
|
||
|
||
ranks = [1 for _ in range(n)] | ||
|
||
for i in range(n): | ||
for j in range(i + 1, n): | ||
w1, h1, i1 = wh_list[i] | ||
w2, h2, i2 = wh_list[j] | ||
if w1 < w2 and h1 < h2: | ||
ranks[i1] += 1 | ||
elif w1 > w2 and h1 > h2: | ||
ranks[i2] += 1 | ||
# print(ranks) | ||
print(" ".join(map(str, ranks))) |