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
- tacotron
- 한국어 음성 합성
- korean tts
- 보코더
- 딥러닝 음성 합성
- singing voice synthesis
- 한국어 tts
- 음성 합성
- 딥러닝
- 노래합성
- 윈도우
- 트레이닝
- deep voice
- TTS
- waveglow
- Vocoder
- YOLO
- you only look once
- text-to-speech
- 학습
- 타코트론
- 딥러닝 보코더
- melgan
- DCTTS
Archives
- Today
- Total
chldkato
백준 14891 톱니바퀴 (파이썬) 본문
https://www.acmicpc.net/problem/14891
1. 톱니바퀴의 상태를 a 리스트에 저장한다
2. 현재 상태에서 동시에 회전해야하기 때문에 turn 리스트에 각 톱니바퀴가 회전할 방향을 먼저 구한다
3. check_turn 함수에 회전할 톱니바퀴의 인덱스를 입력하여 좌우의 톱니바퀴를 회전해야 하는지 검사한다
4. 모든 톱니바퀴를 앞서 구한 방향에 맞게 회전시킨다
5. 모든 회전을 끝낸 후 문제 조건에 맞는 답을 출력한다
import sys
input = sys.stdin.readline
def check_turn(i):
if i+1 < 4:
if turn[i+1] == 0 and a[i][2] != a[i+1][6]:
turn[i+1] = turn[i] * -1
check_turn(i+1)
if i-1 >= 0:
if turn[i-1] == 0 and a[i][6] != a[i-1][2]:
turn[i-1] = turn[i] * -1
check_turn(i-1)
a = []
for _ in range(4):
row = list(map(int, input().strip()))
a.append(row)
k = int(input())
for _ in range(k):
idx, dir = map(int, input().split())
turn = [0 for _ in range(4)]
turn[idx-1] = dir
check_turn(idx-1)
for i in range(4):
if turn[i] == 0:
continue
temp = [0 for _ in range(8)]
if turn[i] == 1:
for j in range(7):
temp[j+1] = a[i][j]
temp[0] = a[i][7]
elif turn[i] == -1:
for j in range(7, 0, -1):
temp[j-1] = a[i][j]
temp[7] = a[i][0]
a[i] = temp
ans = 0
for i in range(4):
ans += a[i][0] * pow(2, i)
print(ans)
'백준' 카테고리의 다른 글
백준 14889 스타트와 링크 (파이썬) (0) | 2020.04.17 |
---|---|
백준 14890 경사로 (파이썬) (0) | 2020.04.16 |
백준 15683 감시 (파이썬) (0) | 2020.04.16 |
백준 15684 사다리 조작 (파이썬) (0) | 2020.04.15 |
백준 15685 드래곤 커브 (파이썬) (0) | 2020.04.14 |
Comments