Submission #246929

# Submission time Handle Problem Language Result Execution time Memory
246929 2020-07-10T15:04:21 Z egekabas Vještica (COCI16_vjestica) C++14
160 / 160
403 ms 1656 KB
#include <bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
#define mp make_pair
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<ll, ll> pll;
typedef pair<ull, ull> pull;
typedef pair<int, int> pii;
typedef pair<ld, ld> pld;
string s[20];
int precalc[20][30];
int dp[100009];
int n;
int f(int bit){
    if(bit == 0) return 0;
    if(dp[bit] != 0)
        return dp[bit];
    int totlet = 0;
    int cnt = __builtin_popcount(bit);
    for(int i = 0; i < n; ++i)
        if((1<<i)&bit)
            totlet += s[i].size();
    vector<int> com(30, 1e9);
    for(int i = 0; i < n; ++i)
        if((1<<i)&bit)
            for(int j = 0; j <= 'z'-'a'; ++j)
                com[j] = min(com[j], precalc[i][j]);
    int totcom = 0;
    for(int j = 0; j <= 'z'-'a'; ++j)
        totcom += com[j];
    dp[bit] = totlet -= totcom*(cnt-1);
    for(int nbit = ((bit-1)&bit); nbit > 0; nbit = ((nbit-1)&bit)){
        dp[bit] = min(dp[bit], f(nbit)+f(bit-nbit)-totcom);
    }
    //cout << bit << ' ' << dp[bit] << '\n';
    return dp[bit];
}
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    
    //freopen("in.txt", "r", stdin);
    //freopen("out.txt", "w", stdout);

    cin >> n;
    for(int i = 0; i < n; ++i){
        cin >> s[i];
        for(auto u : s[i])
            precalc[i][u-'a']++;
    }
    cout << f((1<<n)-1)+1 << '\n';
}
# Verdict Execution time Memory Grader output
1 Correct 6 ms 384 KB Output is correct
2 Correct 6 ms 384 KB Output is correct
3 Correct 6 ms 384 KB Output is correct
4 Correct 362 ms 640 KB Output is correct
5 Correct 396 ms 808 KB Output is correct
6 Correct 403 ms 1272 KB Output is correct
7 Correct 387 ms 1528 KB Output is correct
8 Correct 402 ms 1656 KB Output is correct
9 Correct 382 ms 1656 KB Output is correct
10 Correct 363 ms 1536 KB Output is correct