#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define fi first
#define se second
#define mp make_pair
#define eb emplace_back
#define ALL(x) (x).begin(), (x).end()
#define FOR(i, a, b) for(int i = (a); i < (b); ++i)
#define FORU(i, a, b) for(int i = (a); i <= (b); ++i)
#define FORD(i, a, b) for(int i = (a); i >= (b); --i)
#define IOS cin.tie(0)->sync_with_stdio(false);
#define PROB "rowords"
void Fi(){
if(fopen(PROB".in", "r")){
freopen(PROB".in", "r", stdin);
freopen(PROB".out", "w", stdout);
}
}
const int N = 2e3 + 1;
int dp[N * 2][N], t[N * 2][N];
int n, m, ans;
string s, p;
const int dx[] = {0, -1, -1};
const int dy[] = {-1, 0, -1};
void calc(){
memset(dp, 0, sizeof(dp));
memset(t, -1, sizeof(t));
FORU(i, 1, n * 2) t[i][0] = 1;
FORU(j, 1, m) t[0][j] = 0;
FORU(i, 1, n * 2) FORU(j, 1, m){
auto selection = {
dp[i][j - 1],
dp[i - 1][j],
dp[i - 1][j - 1] + (s[i] == p[j])
};
dp[i][j] = *max_element(ALL(selection));
t[i][j] = max_element(ALL(selection)) - selection.begin();
}
ans = max(ans, dp[n][m]);
FORU(row, 1, n){
{
int i = row, j;
for(j = 1; j <= m && t[i][j] != 2; ++j);
if(j <= m){
t[i][j] = 0;
while(i < n * 2 && j <= m){
if(t[i + 1][j] == 1) t[++i][j] = 0;
else if(j == m) break;
else if(t[i + 1][j + 1] == 2) t[++i][++j] = 0;
else ++j;
}
}
}
{
int tmp = 0;
for(int i = n + row, j = m; i > row && j > 0;){
int d = t[i][j];
if(d == 2) ++tmp;
i += dx[d], j += dy[d];
}
ans = max(ans, tmp);
}
}
}
int main(){
IOS;
Fi();
cin >> s >> p;
n = s.size(), m = p.size();
s = " " + s + s;
p = " " + p;
calc();
reverse(p.begin() + 1, p.begin() + m + 1);
calc();
cout << ans;
return 0;
}
Compilation message
rowords.cpp: In function 'void Fi()':
rowords.cpp:20:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
20 | freopen(PROB".in", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
rowords.cpp:21:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
21 | freopen(PROB".out", "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
33 ms |
62916 KB |
Output is correct |
2 |
Correct |
33 ms |
62904 KB |
Output is correct |
3 |
Correct |
33 ms |
62976 KB |
Output is correct |
4 |
Correct |
33 ms |
62868 KB |
Output is correct |
5 |
Incorrect |
33 ms |
62980 KB |
Output isn't correct |
6 |
Correct |
45 ms |
62924 KB |
Output is correct |
7 |
Correct |
61 ms |
62912 KB |
Output is correct |
8 |
Incorrect |
96 ms |
62980 KB |
Output isn't correct |
9 |
Incorrect |
115 ms |
62972 KB |
Output isn't correct |
10 |
Incorrect |
104 ms |
62916 KB |
Output isn't correct |
11 |
Incorrect |
111 ms |
62988 KB |
Output isn't correct |
12 |
Correct |
102 ms |
62952 KB |
Output is correct |
13 |
Incorrect |
142 ms |
62872 KB |
Output isn't correct |
14 |
Incorrect |
127 ms |
62996 KB |
Output isn't correct |
15 |
Incorrect |
136 ms |
62904 KB |
Output isn't correct |
16 |
Incorrect |
124 ms |
62984 KB |
Output isn't correct |
17 |
Incorrect |
121 ms |
62988 KB |
Output isn't correct |
18 |
Incorrect |
160 ms |
63004 KB |
Output isn't correct |
19 |
Incorrect |
100 ms |
62924 KB |
Output isn't correct |
20 |
Incorrect |
147 ms |
62928 KB |
Output isn't correct |
21 |
Incorrect |
106 ms |
63096 KB |
Output isn't correct |
22 |
Incorrect |
127 ms |
62920 KB |
Output isn't correct |
23 |
Incorrect |
145 ms |
62996 KB |
Output isn't correct |
24 |
Incorrect |
150 ms |
63000 KB |
Output isn't correct |
25 |
Incorrect |
174 ms |
62916 KB |
Output isn't correct |