# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
320886 | dolphingarlic | Bajka (COCI20_bajka) | C++14 | 26 ms | 364 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
int dp[2][300];
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n, m;
string s, t;
vector<int> pos;
cin >> n >> m >> s >> t;
for (int i = 0; i < n; i++) if (s[i] == t[0]) pos.push_back(i);
for (int i = 1; i < m; i++) {
pos.clear();
for (int j = 0; j < n; j++) if (s[j] == t[i]) {
pos.push_back(j);
dp[i & 1][j] = INT_MAX / 2;
if (j && s[j - 1] == t[i - 1]) {
dp[i & 1][j] = min(dp[i & 1][j], dp[i - 1 & 1][j - 1] + 1);
}
if (j < n - 1 && s[j + 1] == t[i - 1]) {
dp[i & 1][j] = min(dp[i & 1][j], dp[i - 1 & 1][j + 1] + 1);
}
}
for (int j : pos) for (int k : pos) dp[i & 1][j] = min(dp[i & 1][j], dp[i & 1][k] + abs(k - j));
}
int ans = INT_MAX / 2;
for (int i : pos) ans = min(ans, dp[m - 1 & 1][i]);
if (ans == INT_MAX / 2) cout << -1;
else cout << ans;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |