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
- JSONArray 분할
- multi update
- JSON 분할
- 스테이지에 올리기
- 스프링 배치 공식문서
- JSON 분해
- 성능개선
- 문자형을 날짜형으로
- JSONObject 분할
- ChainedTransactionManager #분산데이터베이스 #Spring Boot #MyBatis
- 스프링 웹플럭스
- spring reactive programming
- JobExecutionAlreadyRunningException
- 폐기하기
- date_format
- str_to_date
- Meta Table
- git stage
- nonblocking
- 스프링 리액티브 프로그래밍
- spring webflux
- 무시하기
- 날짜형을 문자형으로
- jar 소스보기
- batchInsert
- JSON 분리
- org.json
- 스프링 배치 메타 테이블
- 마이바티스 트랜잭션
- 마리아디비
Archives
- Today
- Total
ebson
boj.kr/14502 연구소 (gold4) 파이썬 풀이 본문
1. 벽을 세울 수 있는 3개 좌표 추출하는 모든 경우에 대해 아래 2, 3 반복
2. bfs 방식으로 벽을 세운 후 전염결과 구하기
3. 전염후 안전지대 총 개수 계산
4. 안전지대 총 개수의 최대값을 출력
N, M = map(int, input().split())
board = [list(map(int, input().split())) for _ in range(N)]
space = []
infected = []
for y in range(N):
for x in range(M):
if board[y][x] == 0:
space.append((y, x))
if board[y][x] == 2:
infected.append((y, x))
dy = (0, 0, -1, 1)
dx = (-1, 1, 0, 0)
from collections import deque
def bfs(y, x, temp):
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 0<=ny<N and 0<=nx<M and (temp[ny][nx] == 0 or temp[ny][nx] == 2) and visited[ny][nx] == 0:
visited[ny][nx] += 1
temp[ny][nx] = 2
dq.append((ny, nx))
import copy
from itertools import combinations
safe_list = []
for combi in combinations(space, 3):
visited = [[0] * M for _ in range(N)]
temp = copy.deepcopy(board)
for (y1, x1) in combi:
temp[y1][x1] = 1
for (y2, x2) in infected:
visited[y2][x2] += 1
bfs(y2, x2, temp)
safe = 0
for row in temp:
safe += row.count(0)
safe_list.append(safe)
print(max(safe_list))
브루트포스, BFS 를 사용하는 문제이다.
'ALGORITHM STUDY WITH PYTHON > BFS | DFS' 카테고리의 다른 글
boj.kr/7569 토마토 (gold5) 파이썬 풀이 (0) | 2023.04.26 |
---|---|
boj.kr/10026 적록색약 (gold5) 파이썬 풀이 (0) | 2023.04.25 |
boj.kr/1697 숨바꼭질 (silver1) 파이썬 풀이 (0) | 2023.04.25 |
boj.kr/7576 토마토 (gold5) 파이썬 풀이 (0) | 2023.04.24 |
boj.kr/2667 단지번호붙이기 (silver1) 파이썬 풀이 (0) | 2023.04.24 |
Comments