일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ubuntu
- 백준 3085번
- 백준
- java_programming
- 다이나믹 프로그래밍
- MySQL
- 백준 16918번
- HUFS 모각코 캠프
- react
- 알고리즘
- 깃헙
- 자바
- 그리디
- 다이나믹프로그래밍
- 백준 15787번
- 모각코
- Python
- AWS
- 백준 18310번
- 백준 1987
- 백준 2512번
- 백준 17451번
- SQL
- 그래프
- 백준 1253번
- javascript
- 백준 1331번
- 머신러닝과 딥러닝
- SWEA 15612번
- 명품자바
Archives
- Today
- Total
차곡차곡
[BOJ/Python] 백준 5430번 - AC 본문
백준 #5430 AC
from collections import deque
import sys
input = sys.stdin.readline
t = int(input()) # 테이스트 케스 개수
for _ in range(t):
order = input().strip() # 수행할 함수
n = int(input()) # 배열 안 수의 개수
arr = input().strip()
if n == 0:
arr = deque()
else:
arr = deque(arr[1:-1].split(',')) # 리스트 괄호 제거 -> 리스트로 변경
error = False
r_cnt = 0
for o in order:
if o == "R":
r_cnt += 1
elif o == "D" and len(arr) == 0:
error = True
break
else:
if r_cnt % 2 == 0:
arr.popleft()
else:
arr.pop()
if r_cnt % 2 == 1: # R 개수 홀수면 reverse
arr.reverse()
if error:
print("error")
else:
print('[', ','.join(arr), ']', sep='')
'CS > Algorithm' 카테고리의 다른 글
[SWEA/Python] SW Expert Academy 14692번 - 통나무 자르기 (0) | 2022.11.19 |
---|---|
[SWEA/Python] SW Expert Academy 15612번 - 체스판 위의 룩 배치 (0) | 2022.11.06 |
[BOJ/Python] 백준 1331번 - 나이트 투어 (1) | 2022.11.06 |
[BOJ/Python] 백준 15787번 - 기차가 어둠을 해치고 은하수를 (0) | 2022.09.24 |
[BOJ/Python] 백준 2468번 - 안정 영역 (1) | 2022.09.20 |
Comments