본문 바로가기

BOJ/C++

공통부분문자열

 

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
#include <iostream>
#include <vector>
#include <string>
#define MAXX 4001
using namespace std;
 
int dp[MAXX][MAXX];
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
 
    string s, s2;
    cin >> s >> s2;
 
    int ans = 0;
    if (s[0== s2[0]) dp[0][0= 1;
    for (int i = 1; i < s.size(); i++) {
        for (int j = 1; j < s2.size(); j++) {
            if (s[i] == s2[j]) {
                dp[i][j] = dp[i - 1][j - 1+ 1;
            }
            ans = max(ans, dp[i][j]);
        }
    }
 
    cout << ans << '\n';
    return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter

'BOJ > C++' 카테고리의 다른 글

외판원 순회  (0) 2020.02.13
전구  (0) 2020.02.13
[BOJ] 11049. 행렬 곱셈 순서  (0) 2020.02.13
가장 긴 증가하는 부분 수열5  (0) 2020.02.13
가장 큰 정사각형  (0) 2020.02.13