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
- 1563
- 줄 세우기
- RootMotion
- IFileDialog
- C
- C++
- 언리얼엔진5
- 2294
- 티스토리챌린지
- const
- UnrealEngine4
- Programmers
- 백준
- RVO
- DeferredRendering
- UE5
- baekjoon
- 오블완
- directx
- UnrealEngine5
- NRVO
- DirectX11
- GeeksForGeeks
- 팰린드롬 만들기
- softeer
- winapi
- 프로그래머스
- Unreal Engine5
- algorithm
- Frustum
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 9252번 :: LCS 2 본문
https://www.acmicpc.net/problem/9252
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
59
60
61
62
63
|
int dp[1001][1001] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
string s1, s2;
int maxLength = 0;
cin >> s1 >> s2;
for (int i = 1; i <= s1.size(); ++i)
{
for (int j = 1; j <= s2.size(); ++j)
{
if (s1[i - 1] == s2[j - 1])
{
dp[i][j] = dp[i - 1][j - 1] + 1;
}
else
{
dp[i][j] = max(dp[i - 1][j], dp[i][j - 1]);
}
maxLength = max(maxLength, dp[i][j]);
}
}
string result = "";
int y = s1.size();
int x = s2.size();
while (result.size() != maxLength)
{
if (dp[y - 1][x] == dp[y][x])
{
y -= 1;
continue;
}
else if (dp[y][x - 1] == dp[y][x])
{
x -= 1;
continue;
}
y -= 1;
x -= 1;
result.push_back(s1[y]);
}
reverse(result.begin(), result.end());
cout << maxLength << endl;
if (result.size() == 0) return 0;
cout << result;
}
|
cs |
어제 LCS 공부좀해서 관련문제 하나 풀어볼까 했는데 마침 solved.ac에서 dp관련 문제푸는 와중에 연습용문제 하나가 껴있었다.
최장공통부분수열의 길이'만' 구하는거면 위 코드의 29번째줄까지만 수행하면 된다.
문자열까지 구해야하는 문제면, 29번째 줄까지를 통해 DP테이블을 업데이트 후,
dp[n][m], 즉 dp[s1.size()][s2.size()] 부터 시작해서 일련의 로직을 수행하면 된다.
설명은
https://maxlevel-trace.tistory.com/608
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 11049번 :: 행렬 곱셈 순서 (1) | 2023.11.14 |
---|---|
[Algorithm]Baekjoon 17485번 :: 진우의 달 여행 (Large) (0) | 2023.11.07 |
[Algorithm]Baekjoon 10942번 :: 팰린드롬? (0) | 2023.11.07 |
[Algorithm]Baekjoon 14002번 :: 가장 긴 증가하는 부분 수열 4 (0) | 2023.11.07 |
[Algorithm]Baekjoon 2075번 :: N번째 큰 수 (0) | 2023.11.06 |