# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
998573 | Sharky | Copy and Paste 3 (JOI22_copypaste3) | C++17 | 947 ms | 160888 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int N = 2502;
const int B = 5000011;
const int M1 = 1000000007;
const int M2 = 998244353;
int prv[N][N], nxt[N][N], h1[N][N], h2[N][N], dp[N][N];
int cv(char c) { return (c - 'a' + 1); }
bool same(int l, int r, int x) {
return (h1[l][l + x] == h1[r][r + x] && h2[l][l + x] == h2[r][r + x]);
}
int32_t main() {
ios::sync_with_stdio(0); cin.tie(0);
int n, a, b, c;
string s;
cin >> n >> s >> a >> b >> c;
s = "?" + s;
for (int i = 0; i < N; i++) for (int j = 0; j < N; j++) dp[i][j] = 1e18;
for (int i = 1; i <= n; i++) {
h1[i][i] = h2[i][i] = cv(s[i]);
dp[i][i] = a;
}
for (int itvl = 1; itvl <= n - 1; itvl++) {
for (int i = 1; i + itvl <= n; i++) {
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |