• bzoj1688 [Usaco2005 Open]Disease Manangement 疾病管理


    Description

    Alas! A set of D (1 <= D <= 15) diseases (numbered 1..D) is running through the farm. Farmer John would like to milk as many of his N (1 <= N <= 1,000) cows as possible. If the milked cows carry more than K (1 <= K <= D) different diseases among them, then the milk will be too contaminated and will have to be discarded in its entirety. Please help determine the largest number of cows FJ can milk without having to discard the milk.

    Input

    * Line 1: Three space-separated integers: N, D, and K * Lines 2..N+1: Line i+1 describes the diseases of cow i with a list of 1 or more space-separated integers. The first integer, d_i, is the count of cow i's diseases; the next d_i integers enumerate the actual diseases. Of course, the list is empty if d_i is 0. 有N头牛,它们可能患有D种病,现在从这些牛中选出若干头来,但选出来的牛患病的集合中不过超过K种病.

    Output

    * Line 1: M, the maximum number of cows which can be milked.

    Sample Input

    6 3 2
    0---------第一头牛患0种病
    1 1------第二头牛患一种病,为第一种病.
    1 2
    1 3
    2 2 1
    2 2 1

    Sample Output

    5

    OUTPUT DETAILS:

    If FJ milks cows 1, 2, 3, 5, and 6, then the milk will have only two
    diseases (#1 and #2), which is no greater than K (2).

    状压dp……压来压去的在压……

    #include<cstdio>
    #include<algorithm>
    using namespace std;
    int n,m,k,final,ans;
    int mul[20];
    int a[1010];
    int f[1<<18];
    inline int max(int a,int b){return a>b?a:b;}
    inline int read()
    {
        int x=0,f=1;char ch=getchar();
        while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
        while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
        return x*f;
    }
    int main()
    {
    	n=read();m=read();k=read();
    	final=(1<<m)-1;
    	for (int i=0;i<=15;i++)mul[i]=(1<<i);
    	for (int i=1;i<=n;i++)
    	{
    		int x=read(),y;
    		while (x--)
    		{
    		  y=read();
    		  a[i]+=mul[y-1];
    		}
    	}
    	for (int i=1;i<=n;i++)
    	  for (int j=final;j;j--)
    	    f[j|a[i]]=max(f[j|a[i]],f[j]+1);
    	for (int i=0;i<=final;i++)
    	{
    	  int tot=0;bool mrk=0;
    	  for (int j=1;j<=m;j++)
    	    {
    	    	if (i&mul[j-1])tot++;
    	    	if (tot>k)
    	    	{
    	    		mrk=1;
    	    		break;
    	    	}
    	    }
    	  if (mrk) continue;
    	  ans=max(ans,f[i]);
    	}
    	printf("%d",ans);
    }


    ——by zhber,转载请注明来源
  • 相关阅读:
    C# treeView添加节点 删除节点
    xml 基础
    第一章魔兽窗口
    混合开发的框架的初步见解
    node.js的初步见解
    AngularJs的理解
    jquery属性,遍历,HTML操作
    jquery中动画效果的函数
    jquery的选择器
    js操作DOM对象及怎么获取浏览器宽高
  • 原文地址:https://www.cnblogs.com/zhber/p/4035934.html
Copyright © 2020-2023  润新知