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 |
Tags
- 음성 합성
- 학습
- 트레이닝
- 노래합성
- 한국어 음성 합성
- you only look once
- 보코더
- TTS
- DCTTS
- 한국어 tts
- deep voice
- text-to-speech
- 딥러닝 보코더
- YOLO
- korean tts
- 딥러닝
- tacotron
- 딥러닝 음성 합성
- 타코트론
- waveglow
- singing voice synthesis
- 윈도우
- Vocoder
- melgan
Archives
- Today
- Total
chldkato
백준 1793 타일링 (파이썬) 본문
https://www.acmicpc.net/problem/1793
한 칸을 채우는 방법은 세로로 타일을 배치하는 방법 하나
두 칸을 채우는 방법은 가로로 타일을 2개 배치하는 방법과 2x2 타일을 배치하는 방법 2개
따라서 a[i] = a[i-1] + 2 * a[i-2]
import sys
input = sys.stdin.readline
def cnt(n):
if n == 0 or n == 1:
return 1
a = [0 for _ in range(n+1)]
a[0], a[1] = 1, 1
for i in range(2, n+1):
a[i] = a[i-1] + 2 * a[i-2]
return a[n]
while True:
try:
print(cnt(int(input())))
except:
break
'백준' 카테고리의 다른 글
백준 2193 이친수 (파이썬) (0) | 2020.03.03 |
---|---|
백준 2133 타일 채우기 (파이썬) (0) | 2020.03.03 |
백준 11727 2xn 타일링 2 (파이썬) (0) | 2020.03.03 |
백준 11726 2xn 타일링 (파이썬) (0) | 2020.03.03 |
백준 1520 내리막 길 (파이썬) (2) | 2020.03.03 |
Comments