✏️ 문제 문제 파악이분 탐색을 사용해야 하는 거의 대표적인 문제!!!!!이분 탐색을 안 사용하면 보통.. 아니 대개 "시간 초과" 가 뜬다... ^^ 알고리즘이분 탐색매개 변수 탐색 코드n, m = map(int, input().split()) trees = list(map(int, input().split())) def binary_search(trees, target): left, right = 0, max(trees) while left mid: total += h - mid if total ⭐️ 이분 / 이진 탐색에 대해 잘 모른다면? [알고리즘] 이분 / 이진 탐색 (Binary Search) 알고리즘이분 / 이진 탐색 (Binary Search) ?정렬된 리..