[백준/BOJ] 백준 9251번 : LCS
https://www.acmicpc.net/problem/9251 9251번: LCS LCS(Longest Common Subsequence, 최장 공통 부분 수열)문제는 두 수열이 주어졌을 때, 모두의 부분 수열이 되는 수열 중 가장 긴 것을 찾는 문제이다. 예를 들어, ACAYKP와 CAPCAK의 LCS는 ACAK가 된다. www.acmicpc.net input1 문자열의 point1 지점, input2 문자열의 point2 지점에서부터 확인해 나간다 코드 #include #include #include #include using namespace std; int cache[1000][1000]; string input1; string input2; //input1 문자열의 point1지점, inpu..
2020.08.27