[백준 BOJ][DP] 9251 LCS
9251_LCS 링크 https://www.acmicpc.net/problem/9251 풀이 처음에 편의를 위해서 0행과 0열을 0으로 세팅해줍니다. DP[i][j]를 LCS(i까지의 string2, j까지의 string1)라고 정의합시다. LCS로 비교하는 string의 마지막 문자가 같다면, LCS(i까지의 string2, j까지의 string1) = LCS(i-1까지의 string2, j-1까지의 string1) + 1이 됩니다. 즉, if(string2[i] == string1[j]) DP[i][j] = DP[i-1][j-1] + 1이 됩니다. LCS로 비교하는 string의 마지막 문자가 다르다면, LCS(i까지의 string2, j까지의 string1) = max(LCS(i-1까지의 strin..