[백준] 7568번 : 덩치

CHAEN·2022년 6월 17일
0

problem solving

목록 보기
23/33
post-thumbnail

문제

접근 방법

  • 자기 자신보다 키와 몸무게의 값이 둘 다 더 큰 사람의 수를 세기
  • 브루트 포스 유형

나의 풀이

n = int(input())

person = []

for _ in range(n):
    w, h = map(int, input().split())
    person.append((w, h))
    
for w1, h1 in person:
    rank = 1
    for w2, h2 in person:
        if w2 > w1 and h2 > h1:
            rank += 1
        
    print(rank, end=' ')

이중반복문을 돌며 자신보다 덩치가 더 큰 사람만 찾아서 순위를 늘려준다.

다른 사람의 풀이

N= int(input())

S = [list(map(int, input().split())) for i in range(N)]

for x1, y1 in S:
    result = 1
    for x2, y2 in S:
        if x1 < x2 and y1 < y2:
            result += 1


    print(result, end =' ')

입력 받는 부분이 정말 깔끔하고 멋있다.. 짱..bb

profile
공부중입니다

0개의 댓글

관련 채용 정보