1181. 단어 정렬
브이담곰
https://www.acmicpc.net/problem/1181 ✔ 유형 : 정렬✔ 문제 풀이: 힙정렬 사용 import heapqfrom typing import MutableSequencefrom functools import reducedef heap_sort(a : MutableSequence): """힙 정렬""" def down_heap( a: MutableSequence, left:int, right:int)->None: temp = a[left] # 루트 # left 이외에는 모두 힙 상태라 가정하고 a[left]를 아랫부분의 알맞은 위치로 옮겨 힙 상태를 만든다. parent = left while par..