Submission #843515

#TimeUsernameProblemLanguageResultExecution timeMemory
843515CookieCopy and Paste 3 (JOI22_copypaste3)C++14
62 / 100
257 ms48468 KiB
#include<bits/stdc++.h>
#include<fstream>
#pragma GCC optimize("Ofast,O3,unroll-loops")
#pragma GCC target("avx2")
using namespace std;
//ifstream fin("FEEDING.INP");
//ofstream fout("FEEDING.OUT");
#define sz(a) (int)a.size()
#define ll long long
#define pb push_back
#define forr(i, a, b) for(int i = a; i < b; i++)
#define dorr(i, a, b) for(int i = a; i >= b; i--)
#define ld long double
#define vt vector
#include<fstream>
#define fi first
#define se second
#define pll pair<ll, ll>
#define pii pair<int, int>
const int base = 91;
const int mxn = 2505;
const ll inf = 1e15, mod = 1e9 + 7;
ll n, a, b, c;
string s;
ll dp[mxn + 1][mxn + 1], hsh[mxn + 1], pw[mxn + 1];
int nxt[mxn + 1];
ll gethsh(int l, int r){
    return((hsh[r] - hsh[l - 1] * pw[r - l + 1] + mod * mod) % mod);
}
void ckmin(ll &a, ll b){
    a = min(a, b);
}
signed main()
{
     ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    cin >> n >> s >> a >> b >> c;
    pw[0] = 1;
    for(int i = 1; i <= n; i++){
        pw[i] = (pw[i - 1] * base) % mod;
    }
    for(int i = 1; i <= n; i++){
        hsh[i] = (hsh[i - 1] * base + (s[i - 1] - 'a' + 1)) % mod;
    }
    for(int i = 1; i <= n; i++){
        for(int j = i; j <= n; j++){
            dp[i][j] = inf;
        }
    }
    for(int len = 1; len <= n; len++){
        vt<pii>comp;
        for(int j = 1; j + len - 1 <= n; j++){
            nxt[j] = -1;
            comp.pb(make_pair(gethsh(j, j + len - 1), j));
        }
        sort(comp.begin(), comp.end());
        
        
        for(int i = 0; i < sz(comp);){
            int r = i;
            while(r < sz(comp) && comp[r].first == comp[i].first)r++;
            int rp = i;
            for(int j = i; j < r; j++){
                while(rp < r && comp[rp].second < comp[j].second + len){
                    rp++;
                }
                if(rp == r)nxt[comp[j].second] = -1;
                else nxt[comp[j].second] = comp[rp].second;
            }
            i = r;
        }
        
        for(int i = 1; i + len - 1 <= n; i++){
            int l = i, r = i + len - 1;
            ckmin(dp[l][r], dp[l + 1][r] + a); ckmin(dp[l][r], dp[l][r - 1] + a);
            
           
            int idl = l, cnt = 1;
            while(nxt[idl] != -1){
                idl = nxt[idl];
                cnt++;
                int nwr = idl + len - 1;
                ckmin(dp[l][nwr], dp[l][r] + b + c * cnt + a * (nwr - l + 1 - len * cnt));
            }
            
        }
        
    }
    cout << dp[1][n];
    return(0);
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...