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
- you only look once
- 딥러닝 음성 합성
- 트레이닝
- 딥러닝
- singing voice synthesis
- TTS
- 한국어 음성 합성
- YOLO
- waveglow
- 학습
- 한국어 tts
- 타코트론
- 음성 합성
- text-to-speech
- tacotron
- melgan
- korean tts
- 보코더
- deep voice
- 노래합성
- 윈도우
- DCTTS
- Vocoder
- 딥러닝 보코더
Archives
- Today
- Total
chldkato
백준 1182 부분수열의 합 (파이썬) 본문
https://www.acmicpc.net/problem/1182
dfs 조합으로 모든 경우에 대한 합을 구하고 S와 같으면 ans을 증가시킨다
import sys
input = sys.stdin.readline
def dfs(cnt, idx, c):
global ans
if cnt == c:
res = 0
for i in range(n):
if select[i]:
res += a[i]
if res == s:
ans += 1
return
for i in range(idx, n):
select[i] = 1
dfs(cnt + 1, i + 1, c)
select[i] = 0
n, s = map(int, input().split())
a = list(map(int, input().split()))
ans = 0
for c in range(1, n+1):
select = [0 for _ in range(n)]
dfs(0, 0, c)
print(ans)
'백준' 카테고리의 다른 글
백준 1748 수 이어 쓰기 1 (파이썬) (0) | 2020.06.05 |
---|---|
백준 1107 리모컨 (파이썬) (2) | 2020.06.04 |
백준 7568 덩치 (파이썬) (0) | 2020.04.27 |
백준 10815 숫자 카드 (파이썬) (0) | 2020.04.27 |
백준 2805 나무 자르기 (파이썬) (3) | 2020.04.27 |
Comments