记录编号 |
375576 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[USACO Open05] 疾病管理 |
最终得分 |
100 |
用户昵称 |
xzz_233 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.389 s |
提交时间 |
2017-02-25 15:16:32 |
内存使用 |
0.44 MiB |
显示代码纯文本
//XZZ 's code
#include<cstdio>
#include<algorithm>
using namespace std;
const int maxn=1001;
int n,d,k,S[maxn],ct[1<<15];
int F[1<<15];
inline int gi() {
char ch=getchar();
while(ch<'0'||ch>'9')ch=getchar();
int x=0;
while(ch>='0'&&ch<='9')x=x*10+ch-'0',ch=getchar();
return x;
}
inline int count(int a) {
int ans=0;
while(a)ans++,a-=a&-a;
return ans;
}
int main() {
#ifndef xzz
freopen("disease.in","r",stdin);
freopen("disease.out","w",stdout);
#endif
n=gi(),d=gi(),k=gi();
int l,ll;
for(int i=1; i<=n; i++) {
l=gi(),S[i]=0;
while(l--)ll=gi(),S[i]|=1<<ll-1;
}
for(int i=0;i<1<<d;i++)ct[i]=count(i);
for(int i=0; i<n; i++)
for(int s=1<<d; s>-1; s--)
F[s|S[i+1]]=max(F[s|S[i+1]],F[s]+1);
int ans=0;
for(int i=0; i<1<<d; i++)if(ct[i]<=k)ans=max(ans,F[i]);
printf("%d",ans);
return 0;
}