Submission #168372

# Submission time Handle Problem Language Result Execution time Memory
168372 2019-12-12T19:45:50 Z rzbt Vještica (COCI16_vjestica) C++14
160 / 160
111 ms 732 KB
#include <bits/stdc++.h>
#define mp make_pair
#define pb push_back
#define F first
#define S second
#define all(x) x.begin(),x.end()
#define MAXN 18
typedef long long ll;


using namespace std;

int n;
char s[1000006];

int svi[MAXN][28];
int dp[(1<<MAXN)+5];
vector<int> tren;

int main()
{
    scanf("%d", &n);
    for(int i=0;i<n;i++){
        scanf("%s",s);
        int len=strlen(s);
        for(int j=0;j<len;j++)
            svi[i][s[j]-'a']++;

        dp[1<<i]=len;
    }
    for(int i=1;i<(1<<n);i++){
        if(__builtin_popcount(i)==1)continue;
        dp[i]=INT_MAX;
        tren.clear();
        int zajed=0,kolko=0;
        for(int j=0;j<n;j++){
            if((1<<j)&i)tren.pb(j);
        }
        kolko=(1<<tren.size())-1;
        for(int j=0;j<26;j++){
            int kek=10000066;
            for(auto x:tren)kek=min(kek,svi[x][j]);
            zajed+=kek;
        }
        for(int j = (i - 1) & i; j > 0; j = (j - 1) & i){

            //printf("    %d  %d     %d        %d\n",prvi,drugi,j,i);
            dp[i]=min(dp[i],dp[j]+dp[i^j]-zajed);
        }

    }
    printf("%d",1+dp[(1<<n)-1]);

    return 0;
}

Compilation message

vjestica.cpp: In function 'int main()':
vjestica.cpp:35:21: warning: variable 'kolko' set but not used [-Wunused-but-set-variable]
         int zajed=0,kolko=0;
                     ^~~~~
vjestica.cpp:22:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &n);
     ~~~~~^~~~~~~~~~
vjestica.cpp:24:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%s",s);
         ~~~~~^~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 376 KB Output is correct
3 Correct 2 ms 376 KB Output is correct
4 Correct 108 ms 636 KB Output is correct
5 Correct 108 ms 732 KB Output is correct
6 Correct 109 ms 632 KB Output is correct
7 Correct 110 ms 632 KB Output is correct
8 Correct 111 ms 632 KB Output is correct
9 Correct 110 ms 632 KB Output is correct
10 Correct 110 ms 632 KB Output is correct