KEEP GOING
[python] 프로그래머스 43165번 : 타겟 넘버 (BFS) 본문
반응형
https://programmers.co.kr/learn/courses/30/lessons/43165
- 타겟 넘버
문제 설명
입출력 예 설명
n개의 음이 아닌 정수가 있습니다. 이 수를 적절히 더하거나 빼서 타겟 넘버를 만들려고 합니다. 예를 들어 [1, 1, 1, 1, 1]로 숫자 3을 만들려면 다음 다섯 방법을 쓸 수 있습니다.
-1+1+1+1+1 = 3
+1-1+1+1+1 = 3
+1+1-1+1+1 = 3
+1+1+1-1+1 = 3
+1+1+1+1-1 = 3
사용할 수 있는 숫자가 담긴 배열 numbers, 타겟 넘버 target이 매개변수로 주어질 때 숫자를 적절히 더하고 빼서 타겟 넘버를 만드는 방법의 수를 return 하도록 solution 함수를 작성해주세요.
제한사항- 주어지는 숫자의 개수는 2개 이상 20개 이하입니다.
- 각 숫자는 1 이상 50 이하인 자연수입니다.
- 타겟 넘버는 1 이상 1000 이하인 자연수입니다.
[1, 1, 1, 1, 1] | 3 | 5 |
문제에 나온 예와 같습니다.
1. 시간초과 발생한 코드
from itertools import combinations
def solution(numbers, target):
cnt = 0
l = len(numbers)
label = ['+', '-']*l
comb = list(set(combinations(label,l)))
for c in comb:
s = ''
for i in range(l):
s += (c[i] + str(numbers[i]))
if target == int(eval(s)):
cnt+=1
return cnt
2. 솔루션 (BFS 사용)
from collections import deque
def solution(numbers, target):
cnt = 0
deq = deque([(0,0)])
while deq:
s,l = deq.popleft()
if l>len(numbers):
break
if l==len(numbers) and target == s:
cnt +=1
deq.append((s+numbers[l-1],l+1))
deq.append((s-numbers[l-1],l+1))
return cnt
반응형
'code review > bfs-dfs' 카테고리의 다른 글
[python] 백준 18405번 : 경쟁적 전염 (BFS) (0) | 2022.01.16 |
---|---|
[python] 프로그래머스 49189번 : 가장 먼 노드 (BFS) (0) | 2021.12.27 |
[python] 백준 2178번: 미로 탐색 (BFS) (0) | 2021.11.16 |
[python] 음료수 얼려먹기 (DFS) (1) | 2021.11.16 |
[python] 백준 14502번 : 연구소 (DFS, combinations) (0) | 2021.11.09 |
Comments