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
- RootMotion
- DirectX11
- 언리얼엔진5
- 티스토리챌린지
- GeeksForGeeks
- NRVO
- Programmers
- 백준
- const
- Frustum
- 오블완
- C
- 프로그래머스
- UnrealEngine4
- 1563
- 2294
- algorithm
- 팰린드롬 만들기
- Unreal Engine5
- winapi
- DeferredRendering
- UnrealEngine5
- baekjoon
- directx
- softeer
- RVO
- IFileDialog
- UE5
- 줄 세우기
- C++
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 1182번 : 부분수열의 합 본문
https://www.acmicpc.net/problem/1182
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
using namespace std;
int answer = 0;
int target = 0;
int maxSize = 0;
void solution(int index, int sum, vector<int>& numbers)
{
int before = sum;
sum += numbers[index];
if (sum == target) answer++;
if (index+1 <= maxSize - 1)
{
solution(index+1, before, numbers);
solution(index+1, sum, numbers);
}
else return;
}
int main()
{
int n = 0;
int s = 0;
int input = 0;
vector<int> numbers;
cin >> n >> s;
target = s;
maxSize = n;
for (int i = 0; i < n; i++)
{
cin >> input;
numbers.push_back(input);
}
solution(0, 0, numbers);
// N은 1이상 20이하
// S는 절대값 1000,000 이하.
cout << answer;
}
|
cs |
백트래킹 기본예제 중 하나인 부분수열의 합 문제다.
백트래킹은 완전탐색을 할 때, 조건에 따라 더이상 탐색을 진행하지않고 다시 되돌아가는 것을 의미한다.
그렇기 때문에 되돌아가는 조건을 잘 설정하는게 관건이고 성능에 큰 영향을 미칠것이다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 1987번 : 알파벳 (0) | 2022.07.18 |
---|---|
[Algorithm]Baekjoon 1759번 : 암호 만들기 (0) | 2022.07.18 |
[Algorithm]Baekjoon 1922번 :: 네트워크 연결(크루스칼 알고리즘) (0) | 2022.07.09 |
[Algorithm]Baekjoon 1753번 :: 최단거리(다익스트라 알고리즘) (0) | 2022.07.05 |
[Algorithm]Baekjoon 2607번 :: 비슷한 단어 (0) | 2022.05.17 |