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
- 타코트론
- Vocoder
- 딥러닝 보코더
- 윈도우
- 트레이닝
- 딥러닝 음성 합성
- 학습
- deep voice
- melgan
- DCTTS
- 딥러닝
- 음성 합성
- korean tts
- text-to-speech
- YOLO
- waveglow
- 한국어 tts
- 보코더
- TTS
- 노래합성
- 한국어 음성 합성
- you only look once
- singing voice synthesis
- tacotron
Archives
- Today
- Total
chldkato
백준 1987 알파벳 (파이썬) 본문
https://www.acmicpc.net/problem/1987
1. (0,0)부터 dfs로 이동을 시작한다
2. 다음칸으로 이동할 수 있으면 해당 알파벳을 체크하고 재귀를 실행한 후 다시 알파벳 체크를 해제한다
3. 이동 칸의 최대값을 저장한 변수를 출력
import sys
input = sys.stdin.readline
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def dfs(x, y, cnt):
global ans
if cnt == 26:
ans = 26
return
else:
ans = max(ans, cnt)
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nx < m and 0 <= ny < n:
num = to_num(nx, ny)
if c[num] == 0:
c[num] = 1
dfs(nx, ny, cnt+1)
c[num] = 0
def to_num(x, y):
return ord(a[x][y]) - ord('A')
m, n = map(int, input().split())
a = [list(map(str, input().strip())) for _ in range(m)]
c, ans = [0]*26, 0
c[to_num(0, 0)] = 1
dfs(0, 0, 1)
print(ans)
'백준' 카테고리의 다른 글
백준 1939 중량제한 (파이썬) (0) | 2020.02.18 |
---|---|
백준 1152 단어의 개수 (파이썬) (0) | 2020.02.18 |
백준 1726 로봇 (파이썬) (0) | 2020.02.18 |
백준 3184 양 (파이썬) (0) | 2020.02.18 |
백준 9205 맥주 마시면서 걸어가기 (파이썬) (0) | 2020.02.18 |
Comments