奶牛披萨--位标记/组合数

原题链接:https://ac.nowcoder.com/acm/contest/945/A
 

题目描述

有T种馅料,但有些馅料不能被放在一起。求选出一些馅料的方案数是多少。
文件输入第一行为两个整数 T 和 N(T≤20,N≤52T≤20,N≤52),N表示接下来N行会有N个限制。
接下来N行,每行的第一个数Z表示接下来数的个数:a1,a2......az,表示任意一种陷料中这z种馅料不能同时出现。
如果Z=1,则表示a1 这种陷料在任何一种组合中都不得出现。
如果Z=3 a1=3 a2=4 a3=6 表示3,4,6 三种馅料不能在任何一种组合中出现。

输入描述:

Line 1: Two space-separated integers: T and N
Lines 2..N+1: Each line describes a constraint using space-separated
The first integer is the number of ingredients in constraint, Z (1 <= Z <= T). The subsequent Z integers (which are unique) list the ingredient(s) whose combination a pizza from consideration for the cows.

输出描述:

Line 1: A single integer that is the total number of pizzas that can be created using the number of ingredients and constraints.

示例1

输入

6 5
1 1
2 4 2
3 3 2 6
1 5
3 3 4 6

输出

10

要求指定约束下的组合数,使用位标记表示某个元素取或不取,例如1011(7)表示取134的组合,通过位标记表示约束,再通过位运算判断是否违反约束,最终统计出组合数。

代码:

#include<bits/stdc++.h>
using namespace std;
int a[600];
int main(){
    int n,m;
    cin>>n>>m;
    int q,w;
    for(int i=1;i<=m;i++){
        cin>>q;
        for(int j=1;j<=q;j++){
            cin>>w;
            a[i]|=(1<<w-1);
        }
    }
    int s=0;
    for(int i=0;i<(1<<n);i++)
    for(int j=1;j<=m;j++)
    if((a[j]&i)==a[j]){
        s++;
        break;
    }  
    cout<<(1<<n)-s<<"\n";
    return 0;
}

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值