어흥
[프로그래머스] 타겟 넘버 (C++) 본문
728x90
반응형
문제 링크: programmers.co.kr/learn/courses/30/lessons/43165
1. 주의할 점
- TLE가 날까..? 하는 방식으로 풀어도 TLE가 발생하지 않는다
2. 구현
- 2^20 은 대략 10^6으로 1초인 10^9보다 작으니 브루트포스로 풀어도 가능하다
- 각 수를 총합에서 더하거나 빼면서 진행한다. 끝까지 다다른 경우, Target과 숫자가 일치하면 1을, 아니라면 0을 반환한다
#include <string>
#include <vector>
using namespace std;
int t;
vector<int> v;
int brute_force(int idx, int sum){
if(idx==v.size()){
if(sum==t) return 1;
return 0;
}
int temp = 0;
temp+=brute_force(idx+1,sum+v[idx]);
temp+=brute_force(idx+1,sum-v[idx]);
return temp;
}
int solution(vector<int> numbers, int target) {
int answer = 0;
v = numbers;
t = target;
answer = brute_force(0,0);
return answer;
}
728x90
반응형
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 수식 최대화 (C++) (0) | 2021.04.30 |
---|---|
[프로그래머스] 여행경로 (C++) (0) | 2021.03.29 |
[프로그래머스] 징검다리 (C++) (0) | 2021.03.29 |
[프로그래머스] 크레인 인형뽑기 게임(C++) (0) | 2021.03.17 |
[프로그래머스] 징검다리 건너기 (C++) (0) | 2021.03.17 |
Comments