[9252] LCS2
BOJ/DP2018. 4. 22. 02:07
[9252] LCS2 : http://boj.kr/9252
### DP -Track ### (참고 : https://kks227.blog.me/221028710658)
< 소스코드 >
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 | #include <cstdio> #include <cstring> #include <stack> using namespace std; struct P { int ret, si; }; char s[1001], t[1001]; int d[1001][1001]; char a[1001]; stack<P> st; int max(int a, int b) { return a > b ? a : b; } int lcs2(int si, int ti) { int ret = 0; if(si < 0 || ti < 0) return 0; if(d[si][ti] != -1) return d[si][ti]; if(s[si] == t[ti]) { ret = lcs2(si-1, ti-1)+1; st.push((P){ret, si}); } else { ret = max(lcs2(si-1, ti), lcs2(si, ti-1)); } return d[si][ti] = ret; } int main() { int sLen=0, tLen=0; scanf("%s%s", s, t); while(s[sLen]) sLen++; while(t[tLen]) tLen++; memset(d, -1, sizeof(d)); int ans = lcs2(sLen-1, tLen-1); printf("%d\n", ans); while(!st.empty()) { if(st.top().ret == ans) { a[--ans] = s[st.top().si]; } st.pop(); } puts(a); } | cs |
>> 아이디어는 부분문제의 답을 통해 역으로 그 답을 끼워 맞춘다.
>> 테스트 케이스는 아래와 같다.
ACAYKP
CAPCAK
>> 위 테케에 대한 아웃풋은 아래와 같다.
4
ACAK
>> 위 코드의 경우, 스택 st의 ret 에는 3 4 2 1 3 2 1 가 저장이 된다.
>> 맨 처음 정답에 해당하는 4일때의 si, 그다음 작은 숫자인 3일때의 si, ...
>> 이렇게 문자를 거꾸로 저장한 다음 출력하면 답이 된다.
'BOJ > DP' 카테고리의 다른 글
[9177] 단어 섞기 (0) | 2018.05.22 |
---|---|
[2602] 돌다리 건너기 (0) | 2018.05.17 |
[9251] LCS (0) | 2018.04.21 |
[14002] 가장 긴 증가하는 부분 수열 4 (0) | 2018.04.18 |
[10942] 팰린드롬? (0) | 2018.02.22 |