답안 #479438

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
479438 2021-10-11T20:56:37 Z Habitus Vještica (COCI16_vjestica) C++14
0 / 160
2000 ms 844 KB
#include<bits/stdc++.h>
#define ios ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
#define dec(x, y) fixed << setprecision((y)) << (x)
#define xx first
#define yy second
#define srt(v) sort((v).begin(), (v).end())
#define srtr(v) sort((v).rbegin(), (v).rend())
#define pb push_back
#define popb pop_back
#define sz(a) (int)(a).size()
#define len(a) (int)(a).length()
#define mp make_pair

using namespace std;

typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;

int n;
int s[16][26];
ll dp(int mask) {
    for(int i=0; i<n; ++i) {
        if(((1<<i)^mask)==0) {
            ll duz=0LL;
            for(int j=0; j<26; ++j) duz+=s[i][j];
            return duz;
        }
        if((1<<i)&mask) break;
    }
    int p[26];
    for(int i=0; i<26; ++i) p[i]=2000000;
    for(int i=0; i<n; ++i) {
        if((1<<i)&mask) {
            for(int j=0; j<26; ++j) {
                p[j]=min(p[j], s[i][j]);
            }
        }
    }
    ll duz=0LL;
    for(int i=0; i<26; ++i) duz+=(ll)p[i];
    ll mini=2000000000000000LL;
    for(int sub=(mask-1)&mask; sub>0; sub=(sub-1)&mask) {
        mini=min(mini, dp(sub)+dp(mask^sub));
    }
    return mini-duz;
}
int main() {
    ios;
    cin >> n;
    for(int i=0; i<n; ++i) {
        string t; cin >> t;
        for(int j=0; j<len(t); ++j) {
            ++s[i][t[j]-'a'];
        }
    }
    cout << dp((1<<n)-1)+1LL;
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2049 ms 204 KB Time limit exceeded
2 Execution timed out 2074 ms 204 KB Time limit exceeded
3 Execution timed out 2093 ms 204 KB Time limit exceeded
4 Execution timed out 2063 ms 332 KB Time limit exceeded
5 Execution timed out 2078 ms 332 KB Time limit exceeded
6 Execution timed out 2060 ms 588 KB Time limit exceeded
7 Execution timed out 2083 ms 716 KB Time limit exceeded
8 Execution timed out 2061 ms 844 KB Time limit exceeded
9 Execution timed out 2077 ms 712 KB Time limit exceeded
10 Execution timed out 2081 ms 716 KB Time limit exceeded