Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Spring
- 함수
- 자바
- 알고리즘
- 쿼리
- Security
- GitHub
- db
- kotlin
- IntelliJ
- 넥사크로
- 에러
- mybatis
- JavaScript
- 시큐리티
- 코틀린
- 방법
- aws
- Java
- 프로그래머스
- Git
- Vue
- oracle
- error
- 오라클
- 생성
- JPA
- 스프링
- Eclipse
- jquery
Archives
- Today
- Total
송민준의 개발노트
프로그래머스-level2-타겟넘버 본문
https://programmers.co.kr/learn/courses/30/lessons/43165
DFS 활용 재귀를 이용해 풀어주면 된다.
class Solution {
public int solution(int[] numbers, int target) {
int answer = 0;
return dfs(0, 0, numbers, target);
}
private int dfs(int depth, int result, int[] numbers, int target) {
if (depth == numbers.length) {
return result == target ? 1 : 0;
}
return dfs(depth + 1, result + numbers[depth], numbers, target) +
dfs(depth + 1, result - numbers[depth], numbers, target);
}
}
'알고리즘' 카테고리의 다른 글
시간복잡도 Big-O 표기 (0) | 2020.02.03 |
---|---|
DFS(Depth-First Search) - 깊이 우선 탐색법 (0) | 2019.12.10 |
프로그래머스-두 정수 사이의 합 (0) | 2019.10.29 |
프로그래머스-k번째수 (0) | 2019.10.28 |
프로그래머스-서울에서 김서방 찾기 (0) | 2019.10.28 |