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
- 백준11047
- 알고리즘
- 프로그래머스43165
- 백준2606
- 바닥장식
- 펠린드롬
- jsp
- Java
- dfs
- 백준
- 자바
- 프로그래머스
- javascript
- 백준11000
- 타겟넘버
- 그리디
- 백준10988
- 백준 1946
- 백준1969
- BFS/DFS
- 백준4796
- 강의실배정
- 동전0
- 백준12845
- 백준1388
- 구현
- sql
- 신입 사원
- Spring Framework MVC
- BFS
Archives
- Today
- Total
The Kkang's man
[ 자바 /Java ] 프로그래머스 43165 : 타겟넘버 본문
문제
풀이
- 한 경우를 끝까지 탐색한다는 점에서 DFS로 풀이
- 마지막 자리가 아닌 경우(index != numbers.length)
- 재귀함수를 통해 부호를 바꿔가며 탐색한다.
- 마지막 자리일 경우 (index == numbers.length)
- sum을 초기화하고 해당 인덱스의 수를 더한다.
- 모두 더한 값 sum이 target 넘버와 같을 경우 cnt++
class Solution {
private static int cnt = 0;
public int solution(int[] numbers, int target) {
dfs(0, target, numbers); // DFS를 이용해 풀이
int answer = cnt;
return answer;
}
public void dfs(int index, int target, int[] numbers){
if(index == numbers.length){ // 주어진 배열의 마지막 자리일 경우
int sum = 0; // sum초기화
for(int i=0; i<numbers.length; i++){
sum += numbers[i]; // sum에 주어진 배열의 수를 더한다
}
if(sum == target){ // 배열을 모두 더한 값이 target과 같은 경우
cnt++; // cnt++
}
} else { // 마지막자리가 아닐 경우 재귀함수를 통해 부호를 바꿔가며 탐색
numbers[index] *= 1;
dfs(index+1, target, numbers);
numbers[index] *= -1;
dfs(index+1, target, numbers);
}
}
}
'알고리즘 > BFS&DFS' 카테고리의 다른 글
[ 자바 /Java ] 백준 11724 : 연결 요소의 개수 (0) | 2021.06.27 |
---|---|
[ 자바 /Java ] 백준 2606 : 바이러스 (0) | 2021.06.27 |
[ 자바 / Java ] 백준 1388 : 바닥 장식 (0) | 2021.06.27 |
[ 자바 / Java ] 백준 1260 : DFS 와 BFS (0) | 2021.06.20 |
Comments