Algorithm Problems

[백준] [Python] 1182번 부분수열의 합 - 백트래킹 - [대표예제]

WakaraNai 2021. 5. 7. 11:32
728x90
반응형

www.acmicpc.net/problem/1182

 

1182번: 부분수열의 합

첫째 줄에 정수의 개수를 나타내는 N과 정수 S가 주어진다. (1 ≤ N ≤ 20, |S| ≤ 1,000,000) 둘째 줄에 N개의 정수가 빈 칸을 사이에 두고 주어진다. 주어지는 정수의 절댓값은 100,000을 넘지 않는다.

www.acmicpc.net

 

 

Python

import sys
input = sys.stdin.readline

n, s = map(int, input().split())
arr = list(map(int, input().split()))

cnt = 0
def back(num, total):
    global cnt
    if num == n:
        if total == s:
            cnt += 1
        return

    # 해당 숫자를 
    back(num+1, total) # 더하지 않을 경우
    back(num+1, total+arr[num]) # 더할 경우
    
    
back(0,0) # 모든 원소를 선택하지 않았을 때 제외하기
print(cnt-1 if s == 0 else cnt)
728x90
반응형