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
- 정수론
- BFS
- DP
- 수학
- 정렬
- 애드 혹
- 모던 JavaScript 튜토리얼
- 이분 탐색
- 에라토스테네스의 체
- 맵
- 13164
- 2357
- 구현
- 슬라이딩 윈도우
- 투 포인터
- 그리디
- 해시 테이블
- 세그먼트 트리
- SSAFY
- DFS
- boj
- 문자열
- 싸피
- 플로이드-워셜
- 누적 합
- Python
- JavaScript
- 브루트포스
- 트리
- 그래프
Archives
- Today
- Total
흙금이네 블로그
[BOJ] 2186 - 문자판 (Python) 본문
아이디어
DFS로 경로의 수를 계산하되, 동적 계획법으로 이미 방문한 칸의 이후 경로의 수는 저장하여 빠르게 계산한다.
풀이
import sys
input = sys.stdin.readline
def dfs(idx, r, c):
if dp[r][c][idx] >= 0:
return dp[r][c][idx]
if board[r][c] != word[idx]:
dp[r][c][idx] = 0
return 0
if idx == 0:
dp[r][c][idx] = 1
return 1
dp[r][c][idx] = 0
for k in range(-K, K+1):
if k:
nr, nc = r+k, c+k
if N > nr >= 0:
dp[r][c][idx] += dfs(idx-1, nr, c)
if M > nc >= 0:
dp[r][c][idx] += dfs(idx-1, r, nc)
return dp[r][c][idx]
N, M, K = map(int, input().split())
board = [tuple([*input().rstrip()]) for _ in range(N)]
word = input().rstrip()
W = len(word)
dp = [[[-1]*W for _ in range(M)] for _ in range(N)]
res = 0
for r in range(N):
for c in range(M):
if board[r][c] == word[-1]:
res += dfs(W-1, r, c)
print(res)
단어 인덱스를 0부터 증가시키는 코드는 35배 이상 느렸다.
정확한 이유는 잘 모르겠으나 아무래도 테스트 케이스의 차이인 듯하다.
# 더 느린 코드
...
res = 0
for r in range(N):
for c in range(M):
if board[r][c] == word[0]:
res += dfs(0, r, c)
print(res)
'알고리즘' 카테고리의 다른 글
[BOJ] 3197 - 백조의 호수 (Python) (0) | 2023.04.10 |
---|---|
[BOJ] 17387 - 선분 교차 2 (Python) (0) | 2023.04.08 |
[BOJ] 9370 - 미확인 도착지 (Python) (0) | 2023.04.06 |
[BOJ] 4991 - 로봇 청소기 (Python) (0) | 2023.04.05 |
[BOJ] 2668 - 숫자고르기 (Python) (0) | 2023.04.03 |
Comments