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
- 따라하면서 배우는 C언어
- php
- JavaScript
- Algorithm
- C
- graph
- BFS
- Cleancode
- Algospot
- 인프런
- programmers
- udemy
- 종만북
- 정수론
- 따배씨
- C언어
- web
- DP
- BOJ
- String
- 따라하며 배우는 C언어
- BASIC
- Python
- 생활코딩
- 백준
- sorting
- server
- Math
- dfs
- greedy
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 1182 / 부분수열의 합 / Python 파이썬 본문
[BOJ] 1182 / 부분수열의 합 / Python 파이썬
https://www.acmicpc.net/problem/1182
풀이
주어진 수열의 부분 수열의 합을 구하는 문제인데, 조합과 DFS 로 풀어보았다.
# 조합
from itertools import combinations
N, S = map(int, input().split())
nums = list(map(int, input().split()))
res = 0
for i in range(1, N+1):
for comb in combinations(range(N), i):
add = 0
for c in comb:
add += nums[c]
if add == S:
res += 1
print(res)
# DFS
N, S = map(int, input().split())
nums = list(map(int, input().split()))
res = 0
def DFS(idx, add):
global N, S, res
if idx == N:
return
add += nums[idx]
if add == S:
res += 1
DFS(idx+1, add)
DFS(idx+1, add-nums[idx])
DFS(0, 0)
print(res)
※DFS 풀이가 경우의 수가 더 적어, 측정된 시간이 더 짧았다. (효율적이다.)
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 1644 / 소수의 연속합 / Python 파이썬 (0) | 2021.08.12 |
---|---|
[BOJ] 2003 / 수들의 합 2 / Python 파이썬 (0) | 2021.08.09 |
[BOJ] 6603 / 로또 / Python 파이썬 (0) | 2021.08.09 |
[BOJ] 1987 / 알파벳 / Python 파이썬 (0) | 2021.08.09 |
[BOJ] 2580 / 스도쿠 / Python 파이썬 (0) | 2021.08.05 |
Comments