Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 완전탐색
- 백트래킹
- 프로그래머스
- 투 포인터
- swea
- 유니온 파인드
- Effective Java
- 세그먼트 트리
- mst
- 구현
- 플로이드-와샬
- 위상정렬
- 수학
- 알고리즘
- 문자열
- 후니의 쉽게 쓴 시스코 네트워킹
- 이분탐색
- 에라토스테네스의 체
- 스택
- CS
- JUnit 5
- 시뮬레이션
- 동적계획법
- Network
- java
- BFS
- 그리디
- 백준
- Kotlin
- dfs
Archives
반갑습니다!
[프로그래머스] 타겟 넘버 본문
풀이
기초적인 DFS 문제이다. DFS를 하면서 모든 숫자를 다 탐색했을 때 target과 같은 결과를 가지고 있는지 확인하면 된다.
코드
C++
#include <string>
#include <vector>
using namespace std;
void dfs(const vector<int>& numbers, const int& target, int idx, int sum, int& answer) {
if (idx == numbers.size()) {
if (sum == target) answer++;
return;
}
dfs(numbers, target, idx + 1, sum + numbers[idx], answer);
dfs(numbers, target, idx + 1, sum - numbers[idx], answer);
}
int solution(vector<int> numbers, int target) {
int answer = 0;
dfs(numbers, target, 0, 0, answer);
return answer;
}
Java
class Solution {
int n, ans;
public void dfs(int[] numbers, int target, int idx, int sum) {
if (idx == n) {
if (sum == target) ans++;
return;
}
dfs(numbers, target, idx + 1, sum + numbers[idx]);
dfs(numbers, target, idx + 1, sum - numbers[idx]);
}
public int solution(int[] numbers, int target) {
n = numbers.length;
int answer = 0;
dfs(numbers, target, 0, 0);
answer = ans;
return answer;
}
}
'알고리즘 문제 풀이' 카테고리의 다른 글
[프로그래머스] 셔틀버스 (0) | 2020.05.07 |
---|---|
[프로그래머스] 네트워크 (0) | 2020.05.07 |
[SWEA] 2383 점심 식사시간 (0) | 2020.05.07 |
[백준] 14889 스타트와 링크 (0) | 2020.05.06 |
[백준] 14888 연산자 끼워넣기 (0) | 2020.05.06 |