택시짱의 개발 노트

[프로그래머스] 6주차_복서 정렬하기 본문

알고리즘

[프로그래머스] 6주차_복서 정렬하기

택시짱 2021. 9. 18. 21:17

링크

https://programmers.co.kr/learn/courses/30/lessons/85002

 

코딩테스트 연습 - 6주차_복서 정렬하기

복서 선수들의 몸무게 weights와, 복서 선수들의 전적을 나타내는 head2head가 매개변수로 주어집니다. 복서 선수들의 번호를 다음과 같은 순서로 정렬한 후 return 하도록 solution 함수를 완성해주세요

programmers.co.kr

 

풀이

먼저 각각 선수들 끼리의 대전 기록을 확인하여

[승률과, 자신보다 무거운 선수를 이긴 횟수, 나의 무게, 선수 번호] 를 저장 하여

lambda를 이용하여 조건에 맞도록 정렬을 해주면 됩니다~.~

 

 

코드

def solution(weights, head2head):
    result = []
    for id, (w, h) in enumerate(zip(weights, head2head), start=1):
        win_count, over_win_count, no_match = 0, 0, 0
        for target_id, win_lose_data in enumerate(h, start=1):
            if id == target_id or win_lose_data == 'N':
                no_match += 1
                continue
            if win_lose_data == "W":
                win_count += 1
                if w < weights[target_id - 1]:
                    over_win_count += 1

        try:
            win_rate = win_count / (len(weights) - no_match)
        except ZeroDivisionError:
            win_rate = 0
        result.append([win_rate, over_win_count, w, id])

    result = sorted(result, key=lambda x: (-x[0], -x[1], -x[2], x[3]))
    result = list(zip(*result))[3]
    return result


if __name__ == '__main__':
    weights, head2head = [50, 82, 75, 120], ["NLWL", "WNLL", "LWNW", "WWLN"]
    # weights, head2head = [145, 92, 86], ["NLW", "WNL", "LWN"]
    # weights, head2head=[60, 70, 60],["NNN", "NNN", "NNN"]
    print(solution(weights, head2head))

반응형
Comments