Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- bulk update
- 크레인 인형뽑기 게임
- Spring Boot
- 티스토리
- pycon
- 프로그래머스
- 튜플
- 트라이
- 불량 사용자
- 알고리즘
- 호텔 방 배정
- 보행자 천국
- 티스토리 open api
- 징검다리 건너기
- Python
- trie
- Open API
- 가사 검색
- 카카오 인턴
- CleanCode
- jdbc
- Tistory
- 트라이 #trie #알고리즘
Archives
- Today
- Total
택시짱의 개발 노트
[프로그래머스] 6주차_복서 정렬하기 본문
링크
https://programmers.co.kr/learn/courses/30/lessons/85002
풀이
먼저 각각 선수들 끼리의 대전 기록을 확인하여
[승률과, 자신보다 무거운 선수를 이긴 횟수, 나의 무게, 선수 번호] 를 저장 하여
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))
반응형
'알고리즘' 카테고리의 다른 글
[프로그래머스] 7주차 (0) | 2021.09.20 |
---|---|
[백준] - 미로 탈출 (0) | 2021.08.29 |
[프로그래머스] 위클리 챌린지4주차 (0) | 2021.08.24 |
[프로그래머스] 로또의 최고 순위와 최저 순위도움말 (0) | 2021.07.25 |
스트리미 코테 (21) | 2021.01.12 |
Comments