CF417D——Cunning Gena(状态压缩DP)

D. Cunning Gena
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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
题意:

有个笨蛋自己不会做题,但是想要获得比赛的胜利,于是就想请外援帮助。但是外援不肯免费帮他,所以要好处。

笨蛋有n个朋友,第i个朋友的收费是Xi,并且要求笨蛋至少有Ki个显示器,每个显示器价格b,并且告诉你这个朋友会做的题目。

笨蛋要想做出所有的题目至少要花多少钱,不能完成输出-1。

分析:

这题给的m比较小只有20。所以可以用状态压缩,用一个int表示一个状态。

如果将显示器也加到状态里面肯定是存不下的,而且也没有必要。

所以dp[i]表示,对于i状态来说所需的最小费用。(没有包含显示器成本)

首先按照要求显示器的数量,将所有的朋友排序,然后按照这个顺序DP。


#include <algorithm>
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <cstdlib>
using namespace std;

typedef long long LL;
const LL INF = 4e18;

struct node
{
    int x,k,s;
}f[105];
LL dp[ (1<<20)+10 ];

int cmp(node a,node b)
{
    return a.k<b.k;
}
int main()
{
    int t,n,m,b,x;
    memset(dp,-1,sizeof(dp));
    scanf("%d%d%d",&n,&m,&b);
    for(int i=0;i<n;i++)
    {
        scanf("%d%d",&f[i].x,&f[i].k);
        scanf("%d",&t);
        while(t--)
        {
            scanf("%d",&x);
            f[i].s|=1<<(x-1);
        }
    }
    sort(f,f+n,cmp);

    int limit=(1<<m)-1;
    LL ans=INF;
    dp[0]=0;
    for(int i=0;i<n;i++)
    {
        for(int st=0;st<=limit;st++)
        {
            if(dp[st]==-1) continue;

            t=st|f[i].s;
            if(dp[t]!=-1)
                dp[t]=min(dp[t],dp[st]+f[i].x);
            else
                dp[t]=dp[st]+f[i].x;
        }

        if(dp[limit]!=-1)
            ans=min(ans,dp[limit]+1LL*f[i].k*b);
    }
    printf("%I64d\n",ans==INF ? -1:ans);

	return 0;
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值