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
- 해시 테이블
- boj
- 싸피
- 정수론
- 구현
- 수학
- 브루트포스
- 그래프
- 플로이드-워셜
- Python
- 그리디
- 에라토스테네스의 체
- JavaScript
- 슬라이딩 윈도우
- 세그먼트 트리
- DFS
- DP
- 모던 JavaScript 튜토리얼
- BFS
- 문자열
- 투 포인터
- 정렬
- 13164
- 맵
- 2357
- SSAFY
- 애드 혹
- 누적 합
- 이분 탐색
- 트리
Archives
- Today
- Total
흙금이네 블로그
[BOJ] 2933 - 미네랄 (Python) 본문
아이디어
막대기를 맞아 미네랄이 파괴된 칸을 기준으로 주변을 BFS하여 바닥에 닿아 있지 않은 클러스터들을 이동시킨다.
풀이
import sys
input = sys.stdin.readline
delta = [(-1, 0), (0, 1), (1, 0), (0, -1)]
def solution():
def throw(i, j):
visited = [[0]*C for _ in range(R)]
for di, dj in delta:
ni, nj = i+di, j+dj
if R > ni >= 0 and C > nj >= 0:
if board[ni][nj] == 'x' and visited[ni][nj] == 0:
visited[ni][nj] = 1
bottom = [-1]*C
queue = [(ni, nj)]
idx = 0
cnt = 1
while idx < cnt:
r, c = queue[idx]
idx += 1
if r > bottom[c]:
bottom[c] = r
for dr, dc in delta:
nr, nc = r+dr, c+dc
if R > nr >= 0 and C > nc >= 0:
if board[nr][nc] == 'x' and visited[nr][nc] == 0:
visited[nr][nc] = 1
queue.append((nr, nc))
cnt += 1
d = 0
for dr in range(1, R-max(bottom)):
for c in range(C):
if bottom[c] >= 0:
r = bottom[c]
if board[r+dr][c] == 'x':
break
else:
d = dr
continue
break
if d > 0:
for r, c in queue:
board[r][c] = '.'
for r, c in queue:
board[r+d][c] = 'x'
R, C = map(int, input().split())
board = [[*input().rstrip()] for _ in range(R)]
N = int(input())
H = tuple(map(int, input().split()))
for n in range(N):
i = R-H[n]
if n%2:
for j in range(C-1, -1, -1):
if board[i][j] == 'x':
board[i][j] = '.'
throw(i, j)
break
else:
for j in range(C):
if board[i][j] == 'x':
board[i][j] = '.'
throw(i, j)
break
for i in range(R):
print(''.join(board[i]))
solution()
'알고리즘' 카테고리의 다른 글
[BOJ] 6087 - 레이저 통신 (Python) (0) | 2023.04.11 |
---|---|
[BOJ] 9376 - 탈옥 (Python) (0) | 2023.04.11 |
[BOJ] 11401 - 이항 계수 3 (Python) (0) | 2023.04.10 |
[BOJ] 3197 - 백조의 호수 (Python) (0) | 2023.04.10 |
[BOJ] 17387 - 선분 교차 2 (Python) (0) | 2023.04.08 |
Comments