728x90
반응형
https://www.acmicpc.net/problem/1182
문제
N개의 정수로 이루어진 수열이 있을 때, 크기가 양수인 부분수열 중에서 그 수열의 원소를 다 더한 값이 S가 되는 경우의 수를 구하는 프로그램을 작성하시오.
입력
첫째 줄에 정수의 개수를 나타내는 N과 정수 S가 주어진다. (1 ≤ N ≤ 20, |S| ≤ 1,000,000) 둘째 줄에 N개의 정수가 빈 칸을 사이에 두고 주어진다. 주어지는 정수의 절댓값은 100,000을 넘지 않는다.
출력
첫째 줄에 합이 S가 되는 부분수열의 개수를 출력한다.
코드
Itertools 라이브러리 코드
from itertools import combinations
n, s = map(int, input().split())
array = list(map(int, input().split()))
result = 0
for i in range(1, n+1):
for comb in combinations(array, i):
if sum(comb) == s:
result += 1
print(result)
재귀 함수 코드
n, s = map(int, input().split())
array = list(map(int, input().split()))
result = 0
a = []
def dfs(q, x):
global result
if len(a) == x:
if sum(a) == s:
result += 1
return
for i in range(q, n):
a.append(array[i])
dfs(i+1, x)
a.pop()
for i in range(1, n+1):
dfs(0, i)
print(result)
728x90
반응형
'코딩테스트 준비 > 백준' 카테고리의 다른 글
[백준] 18429번 : 근손실 (파이썬, Python) (0) | 2023.07.25 |
---|---|
[백준] 2003번 : 수들의 합 2 (0) | 2023.07.25 |
[백준] 9251번 : LCS (파이썬, Python) (0) | 2023.07.16 |
[백준] 12865번: 평범한 배낭 (파이썬, Python) (0) | 2023.07.16 |
[백준] 17266번 : 어두운 굴다리 (파이썬, Python 풀이) (1) | 2023.07.13 |