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
- 구현
- 문자열
- 재귀
- 정렬
- 자료구조
- 유니티
- 우선순위 큐
- VR
- ue5
- XR Interaction Toolkit
- 누적 합
- 유니온 파인드
- 다이나믹 프로그래밍
- BFS
- 그리디 알고리즘
- 브루트포스
- 알고리즘
- 투 포인터
- DFS
- Unreal Engine 5
- 그래프
- 스택
- 백준
- 트리
- 시뮬레이션
- 백트래킹
- 수학
- Team Fortress 2
- c++
- 다익스트라
Archives
- Today
- Total
1일1알
백준 9252번 LCS 2 C++ 본문
LCS 풀이는 검색해보면 좋은 설명들이 많이 있다.
dp배열과 추가로 문자열을 담는 배열을 만들어서 그 배열에 문자열들을 저장했다.
#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 main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
string str1, str2;
cin >> str1 >> str2;
vector<vector<int>> dp(str1.length() + 1, vector<int>(str2.length() + 1, 0));
vector<vector<string>> strs(str1.length() + 1, vector<string>(str2.length() + 1, ""));
for (int i = 1; i <= str1.length(); i++) {
for (int j = 1; j <= str2.length(); j++) {
if (str1[i - 1] == str2[j - 1]) {
dp[i][j] = dp[i - 1][j - 1] + 1;
strs[i][j] = strs[i - 1][j - 1] + str1[i - 1];
}
else {
if (dp[i - 1][j] > dp[i][j - 1]) {
dp[i][j] = dp[i - 1][j];
strs[i][j] = strs[i - 1][j];
}
else {
dp[i][j] = dp[i][j - 1];
strs[i][j] = strs[i][j - 1];
}
}
}
}
int row = str1.length();
int col = str2.length();
cout << dp[row][col] << "\n" << strs[row][col];
};
'알고리즘' 카테고리의 다른 글
백준 11066번 파일 합치기 C++ (0) | 2022.02.23 |
---|---|
백준 23029번 시식 코너는 나의 것 C++ (0) | 2022.02.22 |
백준 11722번 가장 긴 감소하는 부분 수열 C++ (0) | 2022.02.20 |
백준 1633번 최고의 팀 만들기 C++ (0) | 2022.02.19 |
백준 22857번 가장 긴 짝수 연속한 부분 수열(small) C++ (0) | 2022.02.18 |