# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
403117 | rama_pang | Necklace (Subtask 1-3) (BOI19_necklace1) | C++17 | 489 ms | 106460 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
string S, T;
cin >> S >> T;
const auto Solve = [&]() -> array<int, 3> {
int N = S.size();
int M = T.size();
array<int, 3> ans = {0, 0, 0};
// lcs[i][j] = longest common suffix of S[0...i], T[0...j]
// dp1[i][j] = longest suffix of S[0...i] which is prefix of T[j...M]
// dp2[i][j] = longest prefix of S[i...N] which is suffix of T[0...j]
vector<vector<int>> lcs(N, vector<int>(M));
vector<vector<int>> dp1(N, vector<int>(M));
vector<vector<int>> dp2(N, vector<int>(M));
for (int s = 0; s < N; s++) {
for (int t = 0; t < M; t++) {
lcs[s][t] = S[s] == T[t] ? ((s > 0 && t > 0 ? lcs[s - 1][t - 1] : 0) + 1) : 0;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |