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
- JPA
- 백준 15685
- 백준 16719
- 프로래머스
- spring security
- 백준 19238
- spring oauth
- 백준 17626
- with recursive
- 백준
- MSA
- 백준 파이썬
- 백준 17779
- Kotlin
- java 기술면접
- Coroutine
- 웹어플리케이션 서버
- springboot
- java
- JVM
- spring cloud
- 백준 16235
- sql 기술면접
- MySQL
- 백준 16236
- 프로그래머스
- Spring Boot
- Spring
- 파이썬
- re.split
Archives
- Today
- Total
시작이 반
[백준] 4396번번 (python 파이썬) 본문
SMALL
구현문제이다.
열린 칸 주변에 지뢰가 몇개 있는지 확인(해당 위치에서 8방향) 하여 숫자를 출력한다.
만약 연린 칸에 지뢰가 있다면 모든 지뢰 또한 출력한다.
이중 반복문을 이용하여 구현하였다.
dx, dy를 사용하여 좌표를 구하였음
n = int(input())
graph1 = list(input() for _ in range(n))
graph2 = list(input() for _ in range(n))
answer = [['.'] * n for _ in range(n)]
dx = [-1, -1, -1, 0, 1, 1, 1, 0]
dy = [-1, 0, 1, 1, 1, 0, -1, -1]
def findBoom():
for i in range(n):
for j in range(n):
if graph1[i][j] == '.' and graph2[i][j] == 'x':
boom = 0
for k in range(8):
nx = i + dx[k]
ny = j + dy[k]
if nx < 0 or nx >= n or ny < 0 or ny >= n: # 리스트 좌표 벗어났을때
continue
if graph1[nx][ny] == '*':
boom += 1
answer[i][j] = boom
if graph1[i][j] == '*' and graph2[i][j] == 'x':
makeFail()
def makeFail():
global answer
for i in range(n):
for j in range(n):
if graph1[i][j] == '*':
answer[i][j] = '*'
findBoom()
for i in range(n):
for j in range(n):
print(answer[i][j], end='')
print()
LIST
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 20291번번 (python 파이썬) (0) | 2021.03.29 |
---|---|
[백준] 1244번번 (python 파이썬) (0) | 2021.03.29 |
[백준] 2578번번 (python 파이썬) (0) | 2021.03.25 |
[백준] 12933번번 (python 파이썬) (3) | 2021.03.25 |
[백준] 14467번번 (python 파이썬) (0) | 2021.03.24 |