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
- 2357
- SSAFY
- 13164
- 정렬
- 트리
- 투 포인터
- DFS
- JavaScript
- 그리디
- 맵
- DP
- 문자열
- BFS
- 에라토스테네스의 체
- 구현
- 싸피
- Python
- 브루트포스
- 수학
- 슬라이딩 윈도우
- 세그먼트 트리
- 해시 테이블
- 정수론
- 모던 JavaScript 튜토리얼
- 플로이드-워셜
- boj
- 애드 혹
- 누적 합
- 이분 탐색
- 그래프
Archives
- Today
- Total
흙금이네 블로그
[BOJ] 5430 - AC (Python) 본문
아이디어 #1
덱을 이용하여 수를 지워 나간다.
풀이 #1
import sys
from collections import deque
input = sys.stdin.readline
def solution():
T = int(input())
for t in range(T):
p = input().rstrip()
n = int(input())
x = deque(input().rstrip()[1:-1].split(','))
if n == 0:
x.clear()
r = False
for c in p:
if c == 'R':
r = ~r
else:
if x:
if r:
x.pop()
else:
x.popleft()
else:
print('error')
break
else:
if r:
print(f"[{','.join(list(x)[::-1])}]")
else:
print(f"[{','.join(x)}]")
solution()
아이디어 #2
투 포인터를 이용하여 수를 지워 나간다.
풀이 #2
import sys
input = sys.stdin.readline
def solution():
T = int(input())
for t in range(T):
p = input().rstrip()
n = int(input())
x = input().rstrip()[1:-1].split(',')
if n == 0:
x.clear()
s = 0
e = n
r = False
for c in p:
if c == 'R':
r = ~r
else:
if s < e:
if r:
e -= 1
else:
s += 1
else:
print('error')
break
else:
if r:
print(f"[{','.join(x[s:e][::-1])}]")
else:
print(f"[{','.join(x[s:e])}]")
solution()
'알고리즘' 카테고리의 다른 글
[BOJ] 23288 - 주사위 굴리기 2 (Python) (0) | 2023.03.25 |
---|---|
[BOJ] 1817 - 짐 챙기는 숌 (Python) (0) | 2023.03.24 |
[BOJ] 2568 - 전깃줄 - 2 (Python) (0) | 2023.03.24 |
[BOJ] 20057 - 마법사 상어와 토네이도 (Python) (0) | 2023.03.24 |
[BOJ] 14003 - 가장 긴 증가하는 부분 수열 5 (Python) (0) | 2023.03.23 |
Comments