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
- 딥러닝 보코더
- waveglow
- deep voice
- 보코더
- YOLO
- TTS
- melgan
- 한국어 tts
- you only look once
- singing voice synthesis
- 한국어 음성 합성
- 딥러닝
- tacotron
- 트레이닝
- 윈도우
- 음성 합성
- text-to-speech
- Vocoder
- 딥러닝 음성 합성
- 노래합성
- korean tts
- DCTTS
- 학습
- 타코트론
Archives
- Today
- Total
chldkato
백준 5397 키로거 (파이썬) 본문
https://www.acmicpc.net/problem/5397
ans 큐를 따로 만들고 문자를 넣고 지우는 식으로 했더니 시간 초과가 발생
from collections import deque
import sys
input = sys.stdin.readline
tc = int(input())
while tc:
a = list(input().strip())
l, r = deque(), deque()
for k in a:
if k == '<':
if l:
r.appendleft(l.pop())
elif k == '>':
if r:
l.append(r.popleft())
elif k == '-':
if l:
l.pop()
else:
l.append(k)
l.extend(r)
print(''.join(l))
tc -= 1
'백준' 카테고리의 다른 글
백준 5052 전화번호 목록 (파이썬) (2) | 2020.02.27 |
---|---|
백준 2161 카드1 (파이썬) (0) | 2020.02.27 |
백준 5532 방학 숙제 (파이썬) (0) | 2020.02.27 |
백준 2231 분해합 (파이썬) (0) | 2020.02.27 |
백준 2798 블랙잭 (파이썬) (0) | 2020.02.27 |
Comments