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
- 1편
- BaekJoon
- 중반부
- c++
- 카카오
- 카카오인턴
- 보석쇼핑
- 서버개발캠프
- 식단
- LIS #Algorithm #요소추적
- 투포인터
- 코테
- Union-find
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- BFS
- 스마일게이트
- 코딩테스트
- 알고리즘
- 소감
- Smilegate
- 백준
- 유니온파인드
- 삼성 #코테 #2020상반기 #c++
- Algorithm
Archives
- Today
- Total
짱아의 개발 기록장
프로그래머스. 타겟 넘버(c++) / DFS 본문
반응형
기본적인 dfs문제라고 생각된다.
numbers.size()만큼 dfs를 돌면서 계산을 해주고 최종 결과가 target값과 동일하면 answer++해주면 된다.
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
|
#include <string>
#include <vector>
using namespace std;
int answer = 0;
void dfs(int num, int idx, int target, vector<int> numbers)
{
if(idx==numbers.size()){
if(num==target){
answer++;
}
return;
}
dfs(num+numbers[idx], idx+1, target, numbers);
dfs(num-numbers[idx], idx+1, target, numbers);
}
int solution(vector<int> numbers, int target) {
dfs(0, 0, target, numbers);
return answer;
}
|
cs |
반응형
'Algorithm > Programmers' 카테고리의 다른 글
프로그래머스. 파일명 정렬(c++) / String (0) | 2021.04.12 |
---|---|
프로그래머스. 체육복(c++) / Greedy (0) | 2021.03.02 |
프로그래머스. 추석 트래픽(c++) / String (0) | 2021.03.02 |
프로그래머스. 큰 수(c++) / Greedy (0) | 2021.03.01 |
프로그래머스. 단어변환(c++) / DFS+백트래킹 (0) | 2021.02.27 |
Comments