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
- 트레이닝
- Vocoder
- deep voice
- 딥러닝 음성 합성
- 음성 합성
- 딥러닝 보코더
- tacotron
- 노래합성
- 딥러닝
- waveglow
- YOLO
- 타코트론
- text-to-speech
- korean tts
- 윈도우
- 학습
- 한국어 tts
- 한국어 음성 합성
- you only look once
- melgan
- singing voice synthesis
- TTS
- DCTTS
- 보코더
Archives
- Today
- Total
chldkato
백준 2309 일곱 난쟁이 (파이썬) 본문
https://www.acmicpc.net/problem/2309
1. 입력받은 난쟁이의 키를 a에 저장한다
2. dfs 조합으로 난쟁이 9명 중 7명을 선택한다
3. 7명을 선택하면 키를 더하여 res에 저장하고 각 난쟁이의 키를 ans에 저장한다
4. res가 100이면 ans를 정렬하고 순서대로 출력한 후 끝낸다
import sys
input = sys.stdin.readline
def dfs(cnt, idx):
if cnt == 7:
res, ans = 0, []
for i in range(9):
if select[i]:
res += a[i]
ans.append(a[i])
if res == 100:
ans.sort()
for s in ans:
print(s)
sys.exit()
return
for i in range(idx, 9):
select[i] = 1
dfs(cnt + 1, i + 1)
select[i] = 0
a = []
for _ in range(9):
a.append(int(input()))
select = [0 for _ in range(9)]
dfs(0, 0)
'백준' 카테고리의 다른 글
백준 10815 숫자 카드 (파이썬) (0) | 2020.04.27 |
---|---|
백준 2805 나무 자르기 (파이썬) (3) | 2020.04.27 |
백준 18808 스티커 붙이기 (파이썬) (0) | 2020.04.26 |
백준 17281 ⚾ (파이썬) (0) | 2020.04.24 |
백준 17136 색종이 붙이기 (파이썬) (0) | 2020.04.23 |
Comments