반응형
https://programmers.co.kr/learn/courses/30/lessons/43165
#include <string>
#include <vector>
using namespace std;
int dfs(vector<int>& numbers, int idx, int sum, int target) {
if(idx == numbers.size()) {
if(sum == target) return 1;
return 0;
}
return dfs(numbers, idx + 1, sum + numbers[idx], target) + dfs(numbers, idx + 1, sum - numbers[idx], target);
}
int solution(vector<int> numbers, int target) {
return dfs(numbers, 0, 0, target);
}
반응형
'Algorithm' 카테고리의 다른 글
프로그래머스 : 베스트앨범 (0) | 2021.11.13 |
---|---|
프로그래머스 : 2 x n 타일링 (0) | 2021.11.13 |
프로그래머스 : 두 개 뽑아서 더하기 (0) | 2021.11.13 |
프로그래머스 : 순위 (0) | 2021.11.13 |
프로그래머스 : 정수 삼각형 (0) | 2021.11.13 |