http://www.cnblogs.com/acm-bingzi/p/3272898.html

Hackers’ Crackdown

Miracle Corporations has a number of system services running in a distributed computer system which is a prime target for hackers. The system is basically a set of computer nodes with each of them running a set of Nservices. Note that, the set of services running on every node is same everywhere in the network. A hacker can destroy a service by running a specialized exploit for that service in all the nodes.

One day, a smart hacker collects necessary exploits for all these services and launches an attack on the system. He finds a security hole that gives him just enough time to run a single exploit in each computer. These exploits have the characteristic that, its successfully infects the computer where it was originally run and all the neighbor computers of that node.

Given a network description, find the maximum number of services that the hacker can damage.

Input

There will be multiple test cases in the input file. A test case begins with an integer N (1<=N<=16), the number of nodes in the network. The nodes are denoted by 0 to N - 1. Each of the following lines describes the neighbors of a node. Line i (0<=i<N) represents the description of node i. The description for node starts with an integer (Number of neighbors for node i), followed by integers in the range of to N - 1, each denoting a neighboring node of node i.

The end of input will be denoted by a case with N = 0. This case should not be processed.

Output

For each test case, print a line in the format, “Case X: Y”, where X is the case number & Y is the maximum possible number of services that can be damaged.

Sample Input

3

2 1 2

2 0 2

2 0 1

4

1 1

1 0

1 3

1 2

0

Output for Sample Input

Case 1: 3

Case 2: 2

题目大意:(黑客的攻击)假设你是一个黑客,侵入了了一个有着n台计算机(编号为0,1,…,n-1)的网络。一共有n种服务,每台计算机都运行着所有的服务。对于每台计算机,你都可以选择一项服务,终止这台计算机和所有与它相邻计算机的该项服务(如果其中一些服务已经停止,则这些服务继续处于停止状态)。你的目标是让尽量多的服务器完全瘫痪(即:没有任何计算机运行该项服务)

输入格式:输入包含多组数据。每组数据的第一行为整数n(1<=n<=16);以下n行每行描述一台计算机的相邻计算机,其中第一个数m为相邻计算机个数,接下来的m个整数位这些计算机的编号。输入结束标志为n=0。

输出格式:对于每组数据,输出完全瘫痪的服务器的最大数量。

分析:

  本题的数学模型是:把n个集合p1,p2,…pn分成尽量多组,使得每组中所有集合的并集等于全集。这里的集合P就是计算机 i 及其相邻计算机的集合,每组对应于题目中的一项服务。注意到n很小,可以用二进制法表示这些集合,即在代码中,每个集合P实际上是一个非负整数。输入的部分代码如下:

for(int i=0;i<n;i++){
int m,x;
scanf("%d",&m);
P[i] = 1<<i;
while(m--) { scanf("%d",&x); P[i] |= (1<<x); }
}

  为了方便,我们用cover(S)表示若干P的集合S中所有Pi 的并集(二级制表示),即这些Pi 在数值上“按位或”。

for(int S = 0; S < (1<<n); S++){
cover[S] = 0;
for(int i=0;i<n;i++)
if(S & (1<<i)) cover[S] |= P[i];
}

想到这样的动态规划:用f(S)表示子集S最多可以分成多少组,则

  f(S) = max{f(S-S0)+1 |S0是S的子集,cover[S0]等于全集}

如何理解这个方程呢?

S0是S的子集,并且S0可以覆盖全部的点,也就是说集合S0至少可以分成一组

把S0分成一组,剩下的是集合S-S0,最多可以分成f(S-S0)组

选出其中最大的,再加上S0的一组,就是f(S)

这里有一个重要的技巧:枚举S的子集S0。详见下面代码。

int ALL = (1<<n) - 1;
for(int S = 1 ;S< (1<<n); S++){
f[S] = 0;
for(int S0 = S; S0; S0 = (S0-1)&S)
if(cover[S0] == ALL) f[S] = max(f[S], f[S^S0]+1);
}
printf("Case %d: %d\n",++kase,f[ALL]);

完整代码如下:

 1 #include<cstdio>
2 #include<algorithm>
3 using namespace std;
4
5 const int maxn = 16;
6 int n, P[maxn], cover[1<<maxn], f[1<<maxn];
7 int main() {
8 int kase = 0;
9 while(scanf("%d", &n) == 1 && n) {
10 for(int i = 0; i < n; i++) {
11 int m, x;
12 scanf("%d", &m);
13 P[i] = 1<<i;
14 while(m--) { scanf("%d", &x); P[i] |= (1<<x); }
15 }
16 for(int S = 0; S < (1<<n); S++) {
17 cover[S] = 0;
18 for(int i = 0; i < n; i++)
19 if(S & (1<<i)) cover[S] |= P[i];
20 }
21 f[0] = 0;
22 int ALL = (1<<n) - 1;
23 for(int S = 1; S < (1<<n); S++) {
24 f[S] = 0;
25 for(int S0 = S; S0; S0 = (S0-1)&S)
26 if(cover[S0] == ALL) f[S] = max(f[S], f[S^S0]+1);
27 }
28 printf("Case %d: %d\n", ++kase, f[ALL]);
29 }
30 return 0;
31 }

注意:位运算符的优先级比较低,注意加括号

最新文章

  1. HDU 5335 Walk Out
  2. iOS开发者计划(转)
  3. linux —— 学习笔记(汇总)
  4. Android-------设置TextView同时显示图片和文本,并控制图片大小
  5. taobao_api项目开坑,自主完成淘宝主要接口的开发-版本:卖家版(非淘宝api)
  6. 一行代码搞定ThoughtWorks面试题
  7. MyBatis相关配置
  8. ASP.NET Core实现 随处可见的基本身份认证
  9. Lattice
  10. [Oracle11g] 通过伪列查询
  11. CF954I Yet Another String Matching Problem 并查集、FFT
  12. Java EE之 Hibernate 5.x版本中SchemaExport的用法
  13. 2018.06.27 NOIP模拟 节目(支配树+可持久化线段树)
  14. lync2013 错误: 已为不同的传输层安全性(TLS)目标找到类型为“McxInternal”且完全限定的域名(FQDN)为
  15. python开发_platform_获取操作系统详细信息工具
  16. jfinal的controller默认访问的方法是什么
  17. 【bzoj4898】商旅
  18. 121.Best Time to Buy and Sell Stock---dp
  19. [BZOJ5427]最长上升子序列
  20. ATM:模拟实现一个ATM + 购物商城程序

热门文章

  1. Magento(麦进斗)安装问题
  2. sql分割字符串详解
  3. Shell教程快速入门
  4. PyQt5对话框
  5. node 中的定时器, nextTick()和setImmediate()的使用
  6. Entity Framework使用汇总
  7. OD 实验(十二) - 对一个 Delphi 程序的逆向
  8. ubuntu安装Theano+cuda
  9. 归纳一下:C#线程同步的几种方法
  10. Zedgraph悬停时显示内容闪烁的解决