# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
298984 | TadijaSebez | Vještica (COCI16_vjestica) | C++11 | 104 ms | 1144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N=16;
const int A=26;
int cnt[N][A],mn[A];
int dp[1<<N];
const int L=1000050;
char s[L];
int main(){
int n;
scanf("%i",&n);
for(int i=0;i<n;i++){
scanf("%s",s+1);
int m=strlen(s+1);
for(int j=1;j<=m;j++){
cnt[i][s[j]-'a']++;
}
dp[1<<i]=m;
}
for(int i=0;i<1<<n;i++)if(__builtin_popcount(i)>1){
dp[i]=1e9;
for(int j=i;;){
j=(j-1)&i;
if(j==0)break;
dp[i]=min(dp[i],dp[j]+dp[i^j]);
}
for(int j=0;j<A;j++)mn[j]=1e9;
for(int j=0;j<n;j++)if(i>>j&1){
for(int z=0;z<A;z++)mn[z]=min(mn[z],cnt[j][z]);
}
for(int j=0;j<A;j++)dp[i]-=mn[j];
}
printf("%i\n",dp[(1<<n)-1]+1);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |