[BAEKJOON] 1450번: 냅색문제
1450번 문제이다. 사진을 누르면 문제로 이동한다. 문제는 Python언어로 구현하였다. import sys def brute_force(index, w, things, size, result): if index >= size: result.append(w) return brute_force(index + 1, w, things, size, result) brute_force(index + 1, w+things[index], things, size, result) def binary_search(start, end, key, arr): while start < end : mid = (start + end) // 2 if arr[mid]
2021. 11. 16.