首页 > 其他 > 详细

COdeforces#417D Cunning Gena(状压DP)

时间:2015-03-15 23:04:14      阅读:400      评论:0      收藏:0      [点我收藏+]

A boy named Gena really wants to get to the "Russian Code Cup" finals, or at least get a t-shirt. But the offered problems are too complex, so he made an arrangement with his n friends that they will solve the problems for him.

The participants are offered m problems on the contest. For each friend, Gena knows what problems he can solve. But Gena‘s friends won‘t agree to help Gena for nothing: the i-th friend asks Gena xi rubles for his help in solving all the problems he can. Also, the friend agreed to write a code for Gena only if Gena‘s computer is connected to at least ki monitors, each monitor costs b rubles.

Gena is careful with money, so he wants to spend as little money as possible to solve all the problems. Help Gena, tell him how to spend the smallest possible amount of money. Initially, there‘s no monitors connected to Gena‘s computer.

Input

The first line contains three integers nm and b (1?≤?n?≤?1001?≤?m?≤?201?≤?b?≤?109) — the number of Gena‘s friends, the number of problems and the cost of a single monitor.

The following 2n lines describe the friends. Lines number 2i and (2i?+?1) contain the information about the i-th friend. The 2i-th line contains three integers xiki and mi (1?≤?xi?≤?1091?≤?ki?≤?1091?≤?mi?≤?m) — the desired amount of money, monitors and the number of problems the friend can solve. The (2i?+?1)-th line contains mi distinct positive integers — the numbers of problems that thei-th friend can solve. The problems are numbered from 1 to m.

Output

Print the minimum amount of money Gena needs to spend to solve all the problems. Or print -1, if this cannot be achieved.

Sample test(s)
input
2 2 1
100 1 1
2
100 2 1
1
output
202
input
3 2 5
100 1 1
1
100 1 1
2
200 1 2
1 2
output
205
input
1 2 1
1 1 1
1
output
-1
我们发现由于所需要的监视器数量不同,所以我们要将监视器数量从小到大
排序,然后状压DP,因为后面所需监视器超过前面,所以我们不必再考虑监
视器够不够。接下来就是状压DP了。
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<vector>
#include<string>
#include<iostream>
#include<queue>
#include<cmath>
#include<map>
#include<stack>
#include<bitset>
using namespace std;
#define REPF( i , a , b ) for ( int i = a ; i <= b ; ++ i )
#define REP( i , n ) for ( int i = 0 ; i < n ; ++ i )
#define CLEAR( a , x ) memset ( a , x , sizeof a )
typedef long long LL;
typedef pair<int,int>pil;
const LL INF=1e19;
LL dp[1<<20];
struct node{
    int cost,k;
    int s;
}e[110];
int n,m,b,num;
int cmp(node l1,node l2)
{
    return l1.k<l2.k;
}
int main()
{
    int x;
    while(~scanf("%d%d%d",&n,&m,&b))
    {
        CLEAR(dp,-1);
        REPF(i,1,n)
        {
            scanf("%d%d%d",&e[i].cost,&e[i].k,&num);
            while(num--)
            {
                scanf("%d",&x);
                e[i].s|=(1<<(x-1));
            }
        }
        dp[0]=0;LL ans=INF;
        int mm=(1<<m)-1;
        sort(e+1,e+n+1,cmp);
        REPF(i,1,n)
        {
            for(int st=0;st<=mm;st++)
            {
                if(dp[st]==-1)  continue;
                int status=st|e[i].s;
                if(dp[status]==-1) dp[status]=dp[st]+e[i].cost;
                else dp[status]=min(dp[status],dp[st]+e[i].cost);
            }
            if(dp[mm]!=-1)
                ans=min(ans,dp[mm]+1LL*e[i].k*b);
        }
        if(ans==INF)  printf("-1\n");
        else  printf("%lld\n",ans);
    }
    return 0;
}


COdeforces#417D Cunning Gena(状压DP)

原文:http://blog.csdn.net/u013582254/article/details/44281083

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!