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
- Programmers
- 줄 세우기
- 티스토리챌린지
- UnrealEngine5
- winapi
- 언리얼엔진5
- Frustum
- 1563
- Unreal Engine5
- 프로그래머스
- 오블완
- DirectX11
- directx
- RootMotion
- const
- DeferredRendering
- GeeksForGeeks
- IFileDialog
- 2294
- RVO
- UE5
- C++
- 백준
- C
- softeer
- 팰린드롬 만들기
- NRVO
- baekjoon
- algorithm
- UnrealEngine4
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 2602번 :: 돌다리 건너기 본문
https://www.acmicpc.net/problem/2602
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_map>
#include <stack>
#include <numeric>
using namespace std;
string target;
string bridges[2];
int dp[2][101][21] = { 0 };
int DFS(int curIndex, int targetIndex, int isDevilBridge)
{
if (dp[isDevilBridge][curIndex][targetIndex] != -1) return dp[isDevilBridge][curIndex][targetIndex];
if (targetIndex == target.size()-1) return 1;
dp[isDevilBridge][curIndex][targetIndex] = 0;
int otherBridge = (isDevilBridge + 1) % 2;
for (int i = curIndex + 1; i < bridges[0].size(); ++i)
{
if (bridges[otherBridge][i] == target[targetIndex + 1])
{
dp[isDevilBridge][curIndex][targetIndex] += DFS(i, targetIndex + 1, otherBridge);
}
}
return dp[isDevilBridge][curIndex][targetIndex];
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
string s1, s2, s3;
cin >> s1 >> s2 >> s3;
target = " " + s1;
bridges[0] = " " + s2;
bridges[1] = " " + s3;
memset(dp, -1, sizeof(dp));
cout << DFS(0, 0, 0) + DFS(0, 0, 1);
}
|
cs |
꽤나 스탠다드한 유형의 문제라 생각한다.
앞으로 나아갈 때 번갈아가면서 이동해야하는데, 타겟문자열의 순서에 맞게 이동했을 때 전부 맞춰야 우측다리로 건너갈 수 있다.
중복되는 경우를 피하기위해 dp를 3차원으로 했다.
1차는 어느쪽 다리인지 (악마다리인지 천사다리인지)
2차는 현재 다리의 몇번째까지 왔는지
3차는 타겟문자열의 몇번째까지 진행했는지(맞췄는지)
이다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 14852번 :: 타일 채우기 3 (0) | 2024.04.22 |
---|---|
[Algorithm]Baekjoon 4883번 :: 삼각 그래프 (1) | 2024.04.21 |
[Algorithm]Baekjoon 7570번 :: 줄 세우기 (0) | 2024.04.19 |
[Algorithm]Baekjoon 2666번 :: 벽장문의 이동 (1) | 2024.04.19 |
[Algorithm]Baekjoon 2642번 : 동전 바꿔주기 (0) | 2024.04.16 |