반응형
문제
풀이
BFS를 사용했습니다.
첫 숫자의 음수 값, 양수 값을 queue에 push 해주고
queue에서 하나씩 꺼내며 양수를 더한 값, 음수를 더한 값을 다시 queue에 push 합니다.
소스 코드
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
|
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
// 숫자, cnt
queue<pair<int, int>> q;
int solution(vector<int> numbers, int target) {
int answer = 0;
int Size = numbers.size();
// 첫 숫자 push
q.push(make_pair(numbers[0], 1));
q.push(make_pair(-numbers[0], 1));
// 두번째 숫자부터
while (!q.empty()) {
int num = q.front().first;
int cnt = q.front().second;
q.pop();
// 끝까지 왔고, 타겟 넘버랑 같으면 answer++
if (cnt == Size) {
if (num == target) {
answer++;
}
}
// 끝이 아닌 경우에는 현재 숫자와 numbers의 숫자의 합, 차를 push
else {
q.push(make_pair(num + numbers[cnt], cnt + 1));
q.push(make_pair(num - numbers[cnt], cnt + 1));
}
}
return answer;
}
|
cs |
반응형
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스 132265] 롤케이크 자르기 C++ (0) | 2022.11.18 |
---|---|
[프로그래머스 131127] 할인 행사 C++ (0) | 2022.11.04 |
[프로그래머스 42898] 등굣길 C++ (0) | 2021.11.20 |
[프로그래머스 43105] 정수 삼각형 C++ (0) | 2021.11.20 |
[프로그래머스 43162] 네트워크 C++ (0) | 2021.11.19 |