链接

题意:

  有n个人,每个人可能会说:

  • 第x个人是好人/坏人
  • 如果第x个人是好人/坏人,则第y个人是好人/坏人

思路:

  状压dp,首先每个人所说的人只能是他前面10个人,所以对于第i个人记录下,他前面十个人的情况。

  对于第i个人,如果他说的话一个状态不冲突,那么i可以由这个状态转移。

  注意:对于“如果第x个人是好人,那么第y个人是坏人 “,那么x是好人,y是好人是不满足的。但是除了x是好人y是坏人这种情况满足,x是坏人,也是满足的。(一定要学好语文!)

代码

  1. #include<cstdio>
  2. #include<algorithm>
  3. #include<cstring>
  4. #include<iostream>
  5. #include<cmath>
  6.  
  7. using namespace std;
  8.  
  9. int dp[][];
  10. char str[];
  11. int k;
  12.  
  13. void work1(int i,int x,int z) {
  14. int t = ( << k);
  15. for (int j=; j<t; ++j) {
  16. if (((j>>(x-i+k))&)==z) dp[i][(j+t)>>] = max(dp[i][(j+t)>>],dp[i-][j]+);
  17. dp[i][j>>] = max(dp[i][j>>],dp[i-][j]);
  18. }
  19. }
  20. void work2(int i,int x,int y,int z1,int z2) {
  21. int t = ( << k);
  22. for (int j=; j<t; ++j) {
  23. int t1 = ((j>>(x-i+k))&) == z1,t2 = ((j>>(y-i+k))&) != z2;
  24. if (!(t1&&t2)) dp[i][(j+t)>>] = max(dp[i][(j+t)>>],dp[i-][j]+);
  25. dp[i][j>>] = max(dp[i][j>>],dp[i-][j]);
  26. }
  27. }
  28. int main() {
  29. int T,n,x,y,z;
  30. scanf("%d",&T);
  31. while (T--) {
  32. scanf("%d%d",&n,&k);
  33. memset(dp,-,sizeof(dp));
  34. for (int j=,t=(<<(k-)); j<t; ++j) dp[][j] = ;
  35. for (int j=(<<(k-)),t=(<<k); j<t; ++j) dp[][j] = ;
  36.  
  37. for (int i=; i<=n; ++i) {
  38. scanf("%s%s%s%d",str,str,str,&x);
  39. if (str[]=='P') {
  40. scanf("%s%s%s",str,str,str);
  41. if (str[]=='g') z = ;
  42. else z = ;
  43. scanf("%s",str);
  44. work1(i,x,z);
  45. }
  46. else {
  47. scanf("%s%d%s%s%s",str,&x,str,str,str);
  48. if (str[]=='g') z = ;
  49. else z = ;
  50. scanf("%s%s%d%s%s%s",str,str,&y,str,str,str);
  51. work2(i,x,y,z,str[]=='g');
  52. scanf("%s",str);
  53. }
  54. }
  55. int ans = ;
  56. for (int i=,t=(<<k); i<t; ++i) ans = max(ans,dp[n][i]);
  57. printf("%d\n",ans);
  58. }
  59. return ;
  60. }

C17K:Lying Island的更多相关文章

  1. openJudge C17K:Lying Island

    地址:http://poj.openjudge.cn/practice/C17K/ 题目: C17K:Lying Island 查看 提交 统计 提问 总时间限制:  2000ms 内存限制:  26 ...

  2. 【状压DP】OpenJ_POJ - C17K Lying Island

    https://vjudge.net/contest/171652#problem/K [题意] 小岛上有n个人,有些是好人(一定是真话),有些是坏人(可能是真话也可能是假话),现在要判断最多有多少好 ...

  3. PKU_campus_2017_K Lying Island

    思路: 题目链接http://poj.openjudge.cn/practice/C17K/ 状压dp.dp[i][j]表示第i - k人到第i人的状态为j的情况下前i人中最多有多少好人. 实现: # ...

  4. uva 592 Island of Logic (收索)

      Island of Logic  The Island of Logic has three kinds of inhabitants: divine beings that always tel ...

  5. LightOJ 1418 Trees on My Island (Pick定理)

    题目链接:LightOJ 1418 Problem Description I have bought an island where I want to plant trees in rows an ...

  6. [LeetCode] Island Perimeter 岛屿周长

    You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represen ...

  7. 463. Island Perimeter

    https://leetcode.com/problems/island-perimeter/ 在一个N×N的矩阵中,N<100,1代表岛,0代表海,岛内没有海,求岛的周长 [[0,1,0,0] ...

  8. Leetcode-463 Island Perimeter

    #463. Island Perimeter You are given a map in form of a two-dimensional integer grid where 1 represe ...

  9. LeetCode Island Perimeter

    原题链接在这里:https://leetcode.com/problems/island-perimeter/ 题目: You are given a map in form of a two-dim ...

随机推荐

  1. Struts2_HelloWorld_7_2

    第一个程序的流程图: Struts2.x 的作用:把请求和展现分开.

  2. js从入门到精通到深入到就业

    本篇博客是我参看人家代码做的总结,个人感觉非常非常好,简单.步步深入,不用花大量时间来学完正本js,只需要把其中的代码理解透彻,上班无压力(上班无压力是指js部分,包括查看框架源代码都有很大帮助) / ...

  3. graphql 项目搭建(二)

    一.Express基本框架 1.新建一个文件夹gql-server vscode 打开项目,在终端下输入yarn init -y 生成package.json 包(如果没安装yarn ,npm也一样, ...

  4. golang实现文件上传权限验证(超简单)

    Go语言创建web server非常简单,部署也很容易,不像IIS.Apache等那么重量级,需要各种依赖.配置.一些功能单一的web 服务,用Go语言开发特别适合.http文件上传下载服务,在很多地 ...

  5. 2016 Multi-University Training Contest 2 - 1005 (hdu5738)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5738 题目大意:给定平面上的n个点,一个集合合法当且仅当集合中存在一对点u,v,对于集合中任意点w,均 ...

  6. 基于LBS的多人聊天

  7. 对类参数的序列化和反序列化XML

    /// <summary> /// Xml序列化与反序列化 /// </summary> public class XmlUtil { #region 反序列化 /// < ...

  8. 8086汇编语言入门-HelloWorld

    附件下载:  http://pan.baidu.com/s/1i5R9qO9    密码:rfgk 80x86微处理器汇编语言编程.学习任何编程语言都免不了要跨越HelloWorld这道坎,面向机器的 ...

  9. jade简介

    模板引擎:将动静部分糅合的一种实现机制或者技术 var items = [ {title:'..',photo:'http://',id:1,desc:'a'}, {title:'..',photo: ...

  10. Python -函数的参数定义

    一.函数的参数有四种,位置参数.默认参数.可变参数和关键字参数 def func(x, y=0, *arg, **args): '''x为位置参数 y有默认值 *arg为可变参数 **args为关键字 ...