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 |
Tags
- 모델링
- 팀 분석
- Brightics Studio
- 삼성SDS
- 캐글
- 혼공학습단
- 브라이틱스
- 직원 이직여부
- Brigthics
- 혼공머신
- 영상제작기
- 포스코 청년
- 데이터분석
- 포스코 아카데미
- 삼성 SDS Brigthics
- 직원 이직률
- 삼성SDS Brigthics
- 삼성 SDS
- Brigthics Studio
- Brightics
- 브라이틱스 서포터즈
- 혼공머신러닝딥러닝
- 개인 의료비 예측
- 추천시스템
- 혼공
- Brigthics를 이용한 분석
- Brightics를 이용한 분석
- 삼성SDS Brightics
- 데이터 분석
- 노코드AI
Archives
- Today
- Total
데이터사이언스 기록기📚
[백준/Python] 6593번(BFS)_상범빌딩 본문
📌문제 유형
BFS (골드 Lv.5)
📌문제
📌나의 문제풀이
- break 위치 주의하기
- 처음에 x,y,z for문에 break 걸어놨더니 틀렸음(당연,,,,break걸어두면 x,y,z 0,0,0인 경우 밖에 못찾음)
from collections import deque
while True:
l,r,c = map(int,input().split())
if l == 0 and r == 0 and c == 0:
break
maps = []
for _ in range(l):
floor = []
for _ in range(r+1):
floor.append(list(map(str,input())))
floor = floor[:-1][:]
maps.append(floor)
visited = [[[0 for _ in range(c)] for _ in range(r)] for _ in range(l)]
ans = -1
for x in range(l):
for y in range(r):
for z in range(c):
if maps[x][y][z] == 'S':
q = deque([])
q.append((x,y,z))
visited[x][y][z] = 1
while q:
x_,y_,z_ = q.popleft()
if maps[x_][y_][z_] == 'E':
ans = visited[x_][y_][z_]
break
dx = [1,-1,0,0,0,0] # 순서대로 위,아래, 동, 서, 남, 북
dy = [0,0,1,-1,0,0]
dz = [0,0,0,0,-1,1]
for i in range(6):
nx = x_ + dx[i]
ny = y_ + dy[i]
nz = z_ + dz[i]
if 0 <= nx < l and 0 <= ny < r and 0 <= nz < c:
if maps[nx][ny][nz] == '.' and visited[nx][ny][nz] == 0:
visited[nx][ny][nz] = visited[x_][y_][z_] + 1
q.append((nx,ny,nz))
if maps[nx][ny][nz] == 'E' and visited[nx][ny][nz] == 0:
visited[nx][ny][nz] = visited[x_][y_][z_]
q.append((nx,ny,nz))
if ans != -1:
print('Escaped in {0} minute(s).'.format(ans))
else:
print('Trapped!')
📌 다른사람의 문제풀이
import sys
from collections import deque
input = sys.stdin.readline
dz = (1, -1, 0, 0, 0, 0)
dx = (0, 0, 1, -1, 0, 0)
dy = (0, 0, 0, 0, 1, -1)
while True:
l, r, c = map(int, input().split())
if l == 0 and r == 0 and c == 0:
break
board = []
visited = [[[False] * c for _ in range(r)] for _ in range(l)]
for _ in range(l):
board.append([list(input().strip()) for _ in range(r)])
temp = input()
q = deque()
escaped = False
for i in range(l):
for j in range(r):
for k in range(c):
if board[i][j][k] == 'S':
start = (i, j, k, 0)
visited[i][j][k] = True
if board[i][j][k] == 'E':
goal = (i, j, k)
q.append(start)
while q:
# print(f'cur q: {q}')
z, x, y, d = q.popleft()
if (z, x, y) == goal:
escaped = True
print(f'Escaped in {d} minute(s).')
break
nd = d + 1
for i in range(6):
nz = z + dz[i]
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nz < l and 0 <= nx < r and 0 <= ny < c and not visited[nz][nx][ny]:
if board[nz][nx][ny] == '.' or board[nz][nx][ny] == 'E':
q.append((nz, nx, ny, nd))
visited[nz][nx][ny] = True
if not escaped:
print('Trapped!')
📌 리뷰
- 3차원 접근이라 l,r,c 위치 확인 필요(첨에 이것때문에 꼬였음)
- break 설정하지 말기
728x90
'Coding Test > 백준(Python)' 카테고리의 다른 글
[백준/Python] 2116번(구현, 브루트포스)_주사위 쌓기 (0) | 2023.09.05 |
---|---|
[백준/Python] 13164번(그리디,정렬)_행복 유치원 (0) | 2023.09.05 |
[백준/Python] 3584번(DFS, 그래프 이론)_가장 가까운 공통 조상 (0) | 2023.08.17 |
[백준/Python] 14502번(완탐, DFS)_연구소 (0) | 2023.08.15 |
[백준/Python] 13975번(그리디, 우선순위 큐)_ 파일 합치기3 (0) | 2023.08.09 |
Comments