제출 #712404

#제출 시각아이디문제언어결과실행 시간메모리
712404Ahmed57Vještica (COCI16_vjestica)C++14
0 / 160
20 ms1368 KiB
#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(int j = 0;j<s.size();j++){ c[i][s[j]-'a']++; } } memset(dp,-1,sizeof dp); for(int mask = 1;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<<"\n"; }

컴파일 시 표준 에러 (stderr) 메시지

vjestica.cpp: In function 'int main()':
vjestica.cpp:20:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   20 |         for(int j = 0;j<s.size();j++){
      |                       ~^~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...