일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- #알고리즘 #백준 #17406 #백준17406 #algorithm #baekjoon #baekjoon17406 #C++
- 스레드 #동시성 #thread #process #
- #알고리즘 #백준 #12094 #백준12094 #algorithm #baekjoon #baekjoon12094 #C++
- #알고리즘 #백준 #2352 #백준2352 #algorithm #baekjoon #baekjoon2352 #C++
- CleanCode
- #알고리즘 #백준 #1793 #백준1793 #algorithm #baekjoon #baekjoon1793 #C++
- #알고리즘 #백준 #17140 #백준17140 #algorithm #baekjoon #baekjoon17140 #C++
- #알고리즘 #백준 #17136 #백준17136 #algorithm #baekjoon #baekjoon17136 #C++
- #알고리즘 #백준 #14888 #백준14888 #algorithm #baekjoon #baekjoon14888 #C++
- #알고리즘 #백준 #15684 #백준15684 #algorithm #baekjoon #baekjoon15684 #C++
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #문자열압축 #programmers #C++
- #알고리즘 #백준 #1525 #백준1525 #algorithm #baekjoon #baekjoon1525 #C++
- #알고리즘 #백준 #17837 #백준17837 #algorithm #baekjoon #baekjoon17837 #C++
- #알고리즘 #백준 #1260 #백준1260 #algorithm #baekjoon #baekjoon1260 #Java
- 클린코드
- #알고리즘 #백준 #5214 #백준5214 #algorithm #baekjoon #baekjoon5214 #C++
- #알고리즘 #백준 #1987 #백준1987 #algorithm #baekjoon #baekjoon1987 #Java
- #알고리즘 #백준 #15683 #백준15683 #algorithm #baekjoon #baekjoon15683 #C++
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #괄호변환 #programmers #C++
- #알고리즘 #백준 #3190 #백준3190 #algorithm #baekjoon #baekjoon3190 #C++
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #외벽점검 #programmers #C++
- #알고리즘 #백준 #2573 #백준2573 #algorithm #baekjoon #baekjoon2573 #C++
- #알고리즘 #백준 #17472 #백준17472 #algorithm #baekjoon #baekjoon17472 #C++
- 개발서
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #블록이동하기 #programmers #C++
- #알고리즘 #백준 #2616 #백준2616 #algorithm #baekjoon #baekjoon2616 #Java
- 개발자취미
- #알고리즘 #백준 #4386 #백준4386 #algorithm #baekjoon #baekjoon4386 #C++
- #알고리즘 #백준 #2580 #백준2580 #algorithm #baekjoon #baekjoon2580 #Java
- 책리뷰
Archives
- Today
- Total
개발자 일기장.
백준 9252. LCS 2 본문
LCS 2
Problem?
LCS(Longest Common Subsequence, 최장 공통 부분 수열)문제는 두 수열이 주어졌을 때, 모두의 부분 수열이 되는 수열 중 가장 긴 것을 찾는 문제이다.
예를 들어, ACAYKP와 CAPCAK의 LCS는 ACAK가 된다.
Input
첫째 줄과 둘째 줄에 두 문자열이 주어진다. 문자열은 알파벳 대문자로만 이루어져 있으며, 최대 1000글자로 이루어져 있다.
Output
첫째 줄에 입력으로 주어진 두 문자열의 LCS의 길이를, 둘째 줄에 LCS를 출력한다.
LCS가 여러 가지인 경우에는 아무거나 출력한다.
Solution
다음과 같은 방법을 이용했다.
/* https://kswims.tistory.com/189 */
9251번 문제 해결 코드에서 경로만 추가하면 되는 문제이다.
LCS 해결 방법을 알고 있으면 좋을 듯하다.
가정 dp : 해당 문자열까지의 lcs 길이 lcs_text : 해당 lcs text의 역순 저장 |
Code
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
#define MAX 1001
char text1[MAX], text2[MAX];
int dp[MAX][MAX]; // max length array
vector<char> lcs_text;
int main() {
int i = 1, j = 1;
scanf("%s", text1 + 1);
scanf("%s", text2 + 1);
for (i = 1; text1[i]; i++)
for (j = 1; text2[j]; j++)
dp[i][j] = max({ dp[i][j - 1], dp[i - 1][j], dp[i - 1][j - 1] + (text1[i] == text2[j]) });
int ti = i - 1, tj = j - 1;
while (ti > 0 && tj > 0) {
if (dp[ti][tj] == dp[ti - 1][tj])
ti--;
else if (dp[ti][tj] == dp[ti][tj - 1])
tj--;
else {
lcs_text.push_back(text1[ti]);
ti--; tj--;
}
}
cout << dp[i - 1][j - 1] << "\n";
for (int i = lcs_text.size() - 1; i >= 0; i--)
cout << lcs_text[i];
cout << "\n";
return 0;
}
lcs를 한번 잘 이해한다면 해결되는 문제라고 생각한다.
'취업 > Algorithm.' 카테고리의 다른 글
백준 1647. 도시 분할 계획 (0) | 2020.03.16 |
---|---|
백준 1197. 최소 스패닝 트리 (0) | 2020.03.07 |
백준 2467. 용액 (0) | 2020.03.06 |
백준 2166. 다각형의 면적 (0) | 2020.03.06 |
백준 12852. 1로 만들기 2 (0) | 2020.03.06 |