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 |
Tags
- 알고리즘
- Unreal Engine 5
- 투 포인터
- XR Interaction Toolkit
- 문자열
- 시뮬레이션
- Team Fortress 2
- 백준
- 자료구조
- 다익스트라
- 우선순위 큐
- DFS
- 그리디 알고리즘
- 누적 합
- 트리
- 구현
- BFS
- 유니온 파인드
- 유니티
- 브루트포스
- 다이나믹 프로그래밍
- c++
- 스택
- 수학
- 정렬
- 백트래킹
- VR
- 그래프
- ue5
- 재귀
Archives
- Today
- Total
1일1알
백준 2418번 단어 격자 C++ 본문
1. 3차원 dp 배열을 만든다. dp[ 행 ] [ 열 ] [ 문자열 크기 ]
2. 문자열의 0번 원소와 같은 행과 열의 dp [ 행 ][ 열 ][0] 을 1로 설정한다.
3. k를 1부터 문자열 크기 - 1 까지순회하면서 k번째 원소와 같고 주변에 k-1번째 원소가 있다면 dp[i][j][k]에
dp[주변 행][주변 열][k - 1]을 더해준다.
4. 모든 dp[행][열][문자열 크기 - 1]을 더한다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
int dRow[8] = { -1,-1,0,1,1,1,0,-1 };
int dCol[8] = { 0,1,1,1,0,-1,-1,-1 };
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int h, w, l;
cin >> h >> w >> l;
vector<vector<char>> board(h, vector<char>(w));
vector<vector<vector<ll>>> dp(h, vector<vector<ll>>(w, vector<ll>(l, 0)));
string str, target;
for (int i = 0; i < h; i++) {
cin >> str;
for (int j = 0; j < w; j++) {
board[i][j] = str[j];
}
}
cin >> target;
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
if (board[i][j] == target[0]) dp[i][j][0] = 1;
}
}
for (int k = 1; k < l; k++) {
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
if (board[i][j] != target[k]) continue;
for (int y = 0; y < 8; y++) {
int nextRow = i + dRow[y];
int nextCol = j + dCol[y];
if (nextRow < 0 || nextRow >= h) continue;
if (nextCol < 0 || nextCol >= w) continue;
if (board[nextRow][nextCol] != target[k - 1]) continue;
dp[i][j][k] += dp[nextRow][nextCol][k - 1];
}
}
}
}
ll sum = 0;
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
sum += dp[i][j][l - 1];
}
}
cout << sum;
};
'알고리즘' 카테고리의 다른 글
백준 1099번 알 수 없는 문장 C++ (0) | 2022.02.16 |
---|---|
백준 2296번 건물짓기 C++ (0) | 2022.02.15 |
백준 2705번 팰린드롬 파티션 C++ (0) | 2022.02.13 |
백준 3258번 컴포트 C++ (0) | 2022.02.12 |
백준 2082번 시계 C++ (0) | 2022.02.11 |