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
- 스프링 웹플럭스
- 스테이지에 올리기
- org.json
- JSONObject 분할
- git stage
- 폐기하기
- multi update
- 무시하기
- str_to_date
- JSONArray 분할
- JSON 분리
- 문자형을 날짜형으로
- batchInsert
- 마리아디비
- spring webflux
- Meta Table
- 스프링 배치 공식문서
- ChainedTransactionManager #분산데이터베이스 #Spring Boot #MyBatis
- JobExecutionAlreadyRunningException
- 스프링 배치 메타 테이블
- spring reactive programming
- nonblocking
- jar 소스보기
- 날짜형을 문자형으로
- JSON 분할
- date_format
- JSON 분해
- 스프링 리액티브 프로그래밍
- 마이바티스 트랜잭션
- 성능개선
Archives
- Today
- Total
ebson
boj.kr/10026 적록색약 (gold5) 파이썬 풀이 본문
1.bfs방식으로 좌표를 모두 탐색하되 영역색상별로 탐색
2. 비색약자인 경우, 적록색약자인 경우 각각 탐색
3. 각각의 경우의 영역의 총 개수를 출력
N = int(input())
graph = [input() for _ in range(N)]
dy = (-1, 1, 0, 0)
dx = (0, 0, -1, 1)
from collections import deque
def bfs(y, x, rgb):
dq = deque()
dq.append((y, x))
while dq:
(cy, cx) = dq.popleft()
for i in range(4):
ny = cy + dy[i]
nx = cx + dx[i]
if rgb == 'RG':
if 0<=ny<N and 0<=nx<N and visited[ny][nx] == 0 and (graph[ny][nx] == 'R' or graph[ny][nx] == 'G'):
visited[ny][nx] += 1
dq.append((ny, nx))
else:
if 0<=ny<N and 0<=nx<N and visited[ny][nx] == 0 and graph[ny][nx] == rgb:
visited[ny][nx] += 1
dq.append((ny, nx))
visited = [[0]*N for _ in range(N)]
RGB_cnt = 0
for y1 in range(N):
for x1 in range(N):
if visited[y1][x1] == 0:
bfs(y1, x1, graph[y1][x1])
RGB_cnt += 1
visited = [[0]*N for _ in range(N)]
RG_cnt = 0
for y2 in range(N):
for x2 in range(N):
if visited[y2][x2] == 0:
if graph[y2][x2] == 'R' or graph[y2][x2] == 'G':
bfs(y2, x2, 'RG')
RG_cnt += 1
else:
bfs(y2, x2, 'B')
RG_cnt += 1
print(RGB_cnt, end=' ')
print(RG_cnt)
bfs탐색 범위에 대해 세부 조건을 추가할 수 있다.
'ALGORITHM STUDY WITH PYTHON > BFS | DFS' 카테고리의 다른 글
boj.kr/7562 나이트의 이동 (silver1) 파이썬 풀이 (0) | 2023.04.26 |
---|---|
boj.kr/7569 토마토 (gold5) 파이썬 풀이 (0) | 2023.04.26 |
boj.kr/14502 연구소 (gold4) 파이썬 풀이 (0) | 2023.04.25 |
boj.kr/1697 숨바꼭질 (silver1) 파이썬 풀이 (0) | 2023.04.25 |
boj.kr/7576 토마토 (gold5) 파이썬 풀이 (0) | 2023.04.24 |
Comments