#include<bits/stdc++.h>
using namespace std;
long long dp[(1<<16)];
long long c[16][26] = {0};
long long com[(1<<16)];
long long solve(int mask){
if(dp[mask]!=-1)return dp[mask];
if(__builtin_popcount(mask)==1)return com[mask];
long long ans = 1e18;
for(long long s = mask&(mask-1);s;s=s&(s-1)){
ans = min(ans,solve(s)+solve(mask^s)-com[mask]);
}
return dp[mask] = ans;
}
signed main(){
ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
int n;cin>>n;
for(int i = 0;i<n;i++){
string s;cin>>s;
for(auto j:s){
c[i][j-'a']++;
}
}
memset(dp,-1,sizeof dp);
for(int mask = 0;mask<(1<<n);mask++){
long long ch[26] = {0};
for(int j = 0;j<26;j++)ch[j] = 1e9;
for(int j = 0;j<n;j++){
if(mask&(1<<j)){
for(int k = 0;k<26;k++)ch[k]= min(ch[k],c[j][k]);
}
}
for(int j = 0;j<26;j++){
com[mask]+=ch[j];
}
}
cout<<solve((1<<n)-1)+1<<endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
724 KB |
Output isn't correct |
2 |
Incorrect |
1 ms |
724 KB |
Output isn't correct |
3 |
Incorrect |
1 ms |
724 KB |
Output isn't correct |
4 |
Incorrect |
17 ms |
1236 KB |
Output isn't correct |
5 |
Incorrect |
17 ms |
1260 KB |
Output isn't correct |
6 |
Incorrect |
18 ms |
1352 KB |
Output isn't correct |
7 |
Incorrect |
23 ms |
1440 KB |
Output isn't correct |
8 |
Incorrect |
21 ms |
1364 KB |
Output isn't correct |
9 |
Incorrect |
21 ms |
1448 KB |
Output isn't correct |
10 |
Incorrect |
25 ms |
1364 KB |
Output isn't correct |