求二分图的最小点覆盖集,并输出

对于每一个a[i][j]=1,我们从行i-->列j建立一条边

显然,这张图是一张二分图。左边的节点代表删除哪一行,右边的节点代表删除哪一列。中间的边代表所有a[i][j]为1的点。

现在,我们需要做的事情就是找出最少的点,使这些点覆盖住所有的边(即删去哪几行哪几列,没有士兵)

最少的点,使这些点覆盖住所有的边   这个东西是最小点覆盖集。

对于一张二分图来说,在数量上,最小点覆盖集=最大匹配

如果 最大匹配>坦克数量,那么输出无解

剩下的情况就是有解了,如何寻找解?这问题困扰了我很久......最后还是看了别人的博客。

此外,这题目点最多有2000个,为什么匈牙利算法可以AC......不是o(n^3)效率的吗......

  1. 详见北京大学神犇Matrix67的讲解http://blog.csdn.net/niushuai666/article/details/7036897
  1. #include<cstdio>
  2. #include<cstring>
  3. #include<cmath>
  4. #include<vector>
  5. #include<algorithm>
  6. using namespace std;
  7.  
  8. const int MAXN = + ;
  9. int nx, ny;
  10. int g[MAXN][MAXN];
  11. int cx[MAXN], cy[MAXN];
  12. int mk[MAXN];
  13. int ROW, COLUMN, N;
  14. char s[MAXN][MAXN];
  15. vector<int>Gl[MAXN];
  16. vector<int>Gr[MAXN];
  17. vector<int> ansr;
  18. vector<int> ansc;
  19. int flagl[MAXN], flagr[MAXN];
  20. int flag[MAXN];
  21. int mat[MAXN][MAXN];
  22.  
  23. int path(int u)
  24. {
  25. for (int v = ; v<ny; v++)
  26. {
  27. if (g[u][v] && !mk[v])
  28. {
  29. mk[v] = ;
  30. if (cy[v] == - || path(cy[v]))
  31. {
  32. cx[u] = v;
  33. cy[v] = u;
  34. return ;
  35. }
  36. }
  37. }
  38. return ;
  39. }
  40.  
  41. int MaxMatch()
  42. {
  43. int res = ;
  44. memset(cx, -, sizeof(cx));
  45. memset(cy, -, sizeof(cy));
  46. for (int i = ; i<nx; i++)
  47. {
  48. if (cx[i] == -)
  49. {
  50. memset(mk, , sizeof(mk));
  51. res = res + path(i);
  52. }
  53. }
  54. return res;
  55. }
  56.  
  57. void dfs(int now, int x)
  58. {
  59. if (x==)
  60. {
  61. flagl[now] = ;
  62. for (int i = ; i<Gl[now].size(); i++)
  63. if (flagr[Gl[now][i]] == && cx[now] == Gl[now][i])
  64. dfs(Gl[now][i], );
  65.  
  66. }
  67. else
  68. {
  69. flagr[now] = ;
  70. for (int i = ; i<Gr[now].size(); i++)
  71. if (flagl[Gr[now][i]] == && cy[now] != Gr[now][i])
  72. dfs(Gr[now][i], );
  73. }
  74. }
  75.  
  76. int main()
  77. {
  78. while (~scanf("%d%d%d", &ROW, &COLUMN, &N))
  79. {
  80. for (int i = ; i < ROW; i++) scanf("%s", s[i]);
  81. memset(g, , sizeof g);
  82. for (int i = ; i<=ROW; i++) Gl[i].clear();
  83. for (int i = ; i<=COLUMN; i++) Gr[i].clear();
  84. for (int i = ; i < ROW; i++)
  85. for (int j = ; j < COLUMN; j++)
  86. if (s[i][j] == '')
  87. {
  88. g[i][j] = ;
  89. Gl[i].push_back(j);
  90. Gr[j].push_back(i);
  91. }
  92. nx = ROW;
  93. ny = COLUMN;
  94. int ans = MaxMatch();
  95. if (ans>N) printf("NOT ENOUGH TANK\n");
  96. else
  97. {
  98. printf("%d\n", ans);
  99.  
  100. memset(flagl, , sizeof flagl);
  101. memset(flagr, , sizeof flagr);
  102. memset(flag, , sizeof flag);
  103. memset(mat, , sizeof mat);
  104. ansr.clear();
  105. ansc.clear();
  106.  
  107. for (int i = ; i<ROW; i++) if (cx[i] != -) flag[cx[i]] = ;
  108. for (int j = ; j<COLUMN; j++) if (!flag[j]) dfs(j, );
  109.  
  110. for (int i = ; i<ROW; i++) if (flagl[i]) ansr.push_back(i);
  111. for (int i = ; i<COLUMN; i++) if (!flagr[i]) ansc.push_back(i);
  112.  
  113. printf("ROW:");
  114. for (int i = ; i < ansr.size(); i++) printf(" %d", ansr[i]+);
  115. printf("\n");
  116.  
  117. printf("COLUMN:");
  118. for (int i = ; i < ansc.size(); i++) printf(" %d", ansc[i]+);
  119. printf("\n");
  120.  
  121. }
  122. }
  123. return ;
  124. }

HUST 1027 Enemy Target!的更多相关文章

  1. Unity BehaviorDesigner行为树基础总结

    BehaviorDesigner——行为树,用于控制和实现AI逻辑,类似于这样: 上面这个行为树实现了这样的逻辑: 当Player有Input时按照Input值来移动,无Input时查找最近的可攻击目 ...

  2. UVALive 7146 Defeat the Enemy(贪心+STL)(2014 Asia Shanghai Regional Contest)

    Long long ago there is a strong tribe living on the earth. They always have wars and eonquer others. ...

  3. UVa 7146 Defeat the Enemy(贪心)

    题目链接: 传送门 Defeat the Enemy Time Limit: 3000MS     Memory Limit: 32768 KB Description Long long ago t ...

  4. Defeat the Enemy UVALive - 7146

      Long long ago there is a strong tribe living on the earth. They always have wars and eonquer other ...

  5. UVA LIVE 7146 Defeat the Enemy

    这个题跟codeforces 556 D Case of Fugitive思路一样 关于codeforces 556 D Case of Fugitive的做法的链接http://blog.csdn. ...

  6. UVALive 7146 Defeat The Enemy

    Defeat The Enemy Time Limit: 3000MS Memory Limit: Unknown 64bit IO Format: %lld & %llu Long long ...

  7. Neither BindingResult nor plain target object for bean name 'command' available as request attribute

    最近用JSR303在表单提交时使用Java Bean Validation验证数据.报错堆栈如下: java.lang.IllegalStateException: Neither BindingRe ...

  8. MySQL中You can't specify target table for update in FROM clause一场

    mysql中You can't specify target table <tbl> for update in FROM clause错误的意思是说,不能先select出同一表中的某些值 ...

  9. jQuery之常用且重要方法梳理(target,arguments,slice,substring,data,trigger,Attr)-(一)

    1.jquery  data(name) data() 方法向被选元素附加数据,或者从被选元素获取数据. $("#btn1").click(function(){ $(" ...

随机推荐

  1. 转 : 如何用sys as sysdba权限连接数据库进行EXP/IMP

    使用sys as sysdba权限进行EXP/IMP与其它用户稍有不同,详细内容如下(摘自metalink) Applies to: Oracle Server - Enterprise Editio ...

  2. Cormen — The Best Friend Of a Man

    Cormen — The Best Friend Of a Man time limit per test 1 second memory limit per test 256 megabytes i ...

  3. Day03——类、值和对象

    1.js数字-NaN和Infinity 1.在js中,有一种特殊的数值,叫做NaN(Not a Number),表示本来要返回数值的操作却未返回数值的情况,例如0除以0的操作,在其它语言中会报错误或异 ...

  4. Struts2实现国际化

    public class I18nAction extends ActionSupport { private static final long serialVersionUID = -693330 ...

  5. Qt 5.5 tr usage

    in .cpp file, wherever you want, wrap QString with a tr("somesz") rendering it ready to be ...

  6. 视频 -> 帧 浅析

    原创:转载请注明出处 关于帧率 首先以下几个概念必须弄清楚 1.一个帧就是一个画面 2.视频有无数个帧组成 3.表达时间的量  CMTime 的定义: typedef struct { CMTimeV ...

  7. HttpURLConnection请求网络数据的GET请求

    //清单文件中添加权限 <uses-permission android:name="android.permission.INTERNET"/> new Thread ...

  8. js对象大总结2016/4/19

    本地对象(非静态对象) 常用的对象Object,Funcion,Array,Boolen,String,Boolen,Number,Date,RegEXP,Error;new一下就能用的 内置对象:( ...

  9. Disassembly1:HelloWorld

    我这里学习汇编语言的思路就是逆向C++源码. 先从最简单的一个程序入手:

  10. [jQueryUI] – Chosen:select下拉选择框美化插件及问题

    Chosen 是一个支持jquery的select下拉框美化插件,它能让丑陋的.很长的select选择框变的更好看.更方便.不仅如此,它更扩展了select,增加了自动筛选的功能.它可对列表进行分组, ...