일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- MSA
- mock
- JPA
- JUnit5
- Spring Batch
- 우아한세미나
- 코드리뷰
- 스프링부트
- Level2
- 우테코
- Docker
- 프리코스
- AOP
- CircuitBreaker
- 레벨2
- 프로그래머스
- 미션
- 서블릿
- AWS
- 스프링 부트
- 우아한테크코스
- 백준
- HTTP
- 의존성
- 자바
- REDIS
- 트랜잭션
- yml
- 세션
- Paging
Archives
- Today
- Total
늘
타겟 넘버 본문
728x90
알고리즘 분류는 dfs/bfs 인 문제이다. level2문제로 전형적인 재귀 문제였다...!
바로 코드를 첨부하겠습니당
#include <string>
#include <vector>
using namespace std;
void dfs(vector<int> numbers, int target, int i,int& answer, int result){
if(i == numbers.size()){
if(result == target)answer++;
return;
}
dfs(numbers,target, i+1, answer, result+numbers[i]);
dfs(numbers,target, i+1, answer, result-numbers[i]);
}
int solution(vector<int> numbers, int target) {
int answer = 0;
dfs(numbers, target, 0, answer, 0);
return answer;
}
재귀 탈출 조건은 i가 최대 인덱스 범위를 넘어갔을 때, 즉 모든 numbers를 돌아봤을 때 결과가 target과 같다면 결과를 더해주고 return 해줍니다.
728x90
'알고리즘_프로그래머스 > 기타 문제' 카테고리의 다른 글
[프로그래머스] C/C++ 프린터 lv.2 (0) | 2021.09.17 |
---|---|
[프로그래머스] c/c++ 네트워크 level.3 (0) | 2021.08.04 |
괄호 회전하기(월간 코드 챌린지 시즌2) Lv.2 (0) | 2021.04.20 |
해시_전화번호 목록 (0) | 2021.03.28 |
완전탐색_카펫 (0) | 2021.03.23 |
Comments