728x90
[백준알고리즘] 1182번: 부분수열의 합 -Python
https://www.acmicpc.net/problem/1182
뻘짓했당
부분 수열이라고만 했는데 연속된 부분 수열인 줄 알고 계속 시도했었다.. 반례도 찾아가면서...
그러다가 아래의 반례를 찾고는.. 그냥 아무렇게나 뽑아서 만든 부분 수열이란 것을 알았다.
5 0
0 0 0 0 0
output:31
바로 combinations 메서드 써서 통과했다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import sys
from itertools import combinations
n, s = map(int, sys.stdin.readline().split())
arr = list(map(int, sys.stdin.readline().split()))
cnt = 0
for r in range(1, n+1):
cm = combinations(arr, r)
for c in cm:
if sum(c) == s:
cnt += 1
print(cnt)
|
잘못된 점이나 부족한 점 지적해주시면 감사하겠습니다
728x90
'algorithm > 백준알고리즘' 카테고리의 다른 글
[백준알고리즘] 1806번: 부분합 -Python (0) | 2020.03.11 |
---|---|
[백준알고리즘] 2003번: 수들의 합 2 -Python (1) | 2020.03.11 |
[백준알고리즘] 1987번: 알파벳 -Python (0) | 2020.03.11 |
[백준알고리즘] 1759번: 암호 만들기 -Python (0) | 2020.03.10 |
[백준알고리즘] 5014번: 스타트링크 -Python (0) | 2020.03.10 |