진료 순서 정하기

kyle·2023년 3월 6일
0
post-custom-banner

문제 설명
외과의사 머쓱이는 응급실에 온 환자의 응급도를 기준으로 진료 순서를 정하려고 합니다. 정수 배열 emergency가 매개변수로 주어질 때 응급도가 높은 순서대로 진료 순서를 정한 배열을 return하도록 solution 함수를 완성해주세요.

제한사항
중복된 원소는 없습니다.
1 ≤ emergency의 길이 ≤ 10
1 ≤ emergency의 원소 ≤ 100

입출력 예

emergencyresult
[3, 76, 24][3, 1, 2]
[1, 2, 3, 4, 5, 6, 7][7, 6, 5, 4, 3, 2, 1]
[30, 10, 23, 6, 100][2, 4, 3, 5, 1]

필수 키워드
dictionary : key:value로 구성된 자료형

  • dictionary.values() : value만 필요할 때
  • dictionary.keys() : key만 필요할 때
  • dictionary.items() : Key, Value 쌍이 필요할 때

copy

  • list.copy #swallow copy
  • copy.deepcopy(list) #deep copy

구현 코드

#deepcopy를 사용하기 위해 import
import copy
def solution(emergency):
    emerDic={}
    emerIndex=len(emergency)
    #emergency와 같은 emerList생성, deepcopy사용
    #오른차순으로 정렬된 emerList의 역순으로 index가 추가된 딕셔너리 생성
    emerList=copy.deepcopy(emergency)
    emerList.sort()
    for i in emerList:
        emerDic[i] = emerIndex
        emerIndex -= 1
    answer = []
    #앞서 생성한 emerDic을 사용
    for i in emergency:
        answer.append(emerDic[i])
    return answer


        
profile
성장하는 개발자
post-custom-banner

0개의 댓글