题意:给定一个 n * m 的矩阵,有一些格子有目标,每次可以消灭一行或者一列,问你最少要几次才能完成。

析:把 行看成 X,把列看成是 Y,每个目标都连一条线,那么就是一个二分图的最小覆盖数,这个答案就是二分图的最大匹配,在输出解的时候,就是从匈牙利树上,从X的未盖点出发,然后标记X和Y,最后X中未标记的和Y标记的就是答案。

代码如下:

  1. #pragma comment(linker, "/STACK:1024000000,1024000000")
  2. #include <cstdio>
  3. #include <string>
  4. #include <cstdlib>
  5. #include <cmath>
  6. #include <iostream>
  7. #include <cstring>
  8. #include <set>
  9. #include <queue>
  10. #include <algorithm>
  11. #include <vector>
  12. #include <map>
  13. #include <cctype>
  14. #include <cmath>
  15. #include <stack>
  16. #include <sstream>
  17. #include <list>
  18. #include <assert.h>
  19. #include <bitset>
  20. #define debug() puts("++++");
  21. #define gcd(a, b) __gcd(a, b)
  22. #define lson l,m,rt<<1
  23. #define rson m+1,r,rt<<1|1
  24. #define fi first
  25. #define se second
  26. #define pb push_back
  27. #define sqr(x) ((x)*(x))
  28. #define ms(a,b) memset(a, b, sizeof a)
  29. #define sz size()
  30. #define pu push_up
  31. #define pd push_down
  32. #define cl clear()
  33. #define all 1,n,1
  34. #define FOR(i,x,n) for(int i = (x); i < (n); ++i)
  35. #define freopenr freopen("in.txt", "r", stdin)
  36. #define freopenw freopen("out.txt", "w", stdout)
  37. using namespace std;
  38.  
  39. typedef long long LL;
  40. typedef unsigned long long ULL;
  41. typedef pair<int, int> P;
  42. const int INF = 0x3f3f3f3f;
  43. const double inf = 1e20;
  44. const double PI = acos(-1.0);
  45. const double eps = 1e-8;
  46. const int maxn = 2000 + 10;
  47. const LL mod = 1e9 + 7;
  48. const int dr[] = {-1, 0, 1, 0};
  49. const int dc[] = {0, 1, 0, -1};
  50. const char *de[] = {"0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111", "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"};
  51. int n, m;
  52. const int mon[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
  53. const int monn[] = {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
  54. inline bool is_in(int r, int c) {
  55. return r >= 0 && r < n && c >= 0 && c < m;
  56. }
  57.  
  58. struct Edge{
  59. int to, next;
  60. };
  61. Edge edge[maxn*maxn/4];
  62. int head[maxn], cnt;
  63. int match[maxn];
  64. bool used[maxn];
  65. bool visx[maxn], visy[maxn];
  66.  
  67. void addEdge(int u, int v){
  68. edge[cnt].to = v;
  69. edge[cnt].next = head[u];
  70. head[u] = cnt++;
  71. }
  72.  
  73. bool dfs(int u){
  74. used[u] = true;
  75. for(int i = head[u]; ~i; i = edge[i].next){
  76. int v = edge[i].to, w = match[v];
  77. if(w < 0 || !used[w] && dfs(w)){
  78. match[u] = v;
  79. match[v] = u;
  80. return true;
  81. }
  82. }
  83. return false;
  84. }
  85.  
  86. void dfs1(int u){
  87. visx[u] = 1;
  88. for(int i = head[u]; ~i; i = edge[i].next){
  89. int v = edge[i].to;
  90. if(visy[v]) continue;
  91. visy[v] = 1;
  92. dfs1(match[v]);
  93. }
  94. }
  95.  
  96. int main(){
  97. int r, c;
  98. while(scanf("%d %d %d", &r, &c, &m) == 3 && r+c+m){
  99. ms(head, -1); cnt = 0;
  100. for(int i = 0; i < m; ++i){
  101. int u, v;
  102. scanf("%d %d", &u, &v);
  103. --u, --v;
  104. addEdge(u, v + r);
  105. }
  106. n = r + c;
  107. ms(match, -1);
  108. int ans = 0;
  109. for(int i = 0; i < n; ++i) if(match[i] < 0){
  110. ms(used, 0); if(dfs(i)) ++ans;
  111. }
  112. printf("%d", ans);
  113. ms(visx, 0); ms(visy, 0);
  114. ms(used, 0);
  115. for(int i = 0; i < r; ++i) if(match[i] != -1) used[i] = 1;
  116. for(int i = 0; i < r; ++i) if(!used[i]) dfs1(i);
  117. for(int i = 0; i < r; ++i) if(!visx[i]) printf(" r%d", i + 1);
  118. for(int i = r; i < n; ++i) if(visy[i]) printf(" c%d", i + 1 - r);
  119. printf("\n");
  120. }
  121. return 0;
  122. }

  

UVa 11419 SAM I AM (最小覆盖数)的更多相关文章

  1. UVA 11419 SAM I AM (最小点覆盖,匈牙利算法)

    题意:给一个r*c的矩阵,某些格子中可能有一些怪物,可以在一行或一列防止一枚大炮,大炮会扫光整行/列的怪,问最少需要多少炮?输出炮的位置. 思路: 先每行和列都放一个炮,把炮当成点,把怪当成边,一边连 ...

  2. UVA 11419 SAM I AM(最大二分匹配&最小点覆盖:König定理)

    题意:在方格图上打小怪,每次可以清除一整行或一整列的小怪,问最少的步数是多少,又应该在哪些位置操作(对输出顺序没有要求). 分析:最小覆盖问题 这是一种在方格图上建立的模型:令S集表示“行”,T集表示 ...

  3. Uva - 11419 - SAM I AM

    题意:一个矩形——R*C的网格,在某些位置上有石头,在网格外开一炮可以打掉该行或者该列的石头,求打掉这些石头最少需要多少门大炮,位置分别设在哪行哪列(0<R<1001, 0 < C ...

  4. 训练指南 UVA - 11419(二分图最小覆盖数)

    layout: post title: 训练指南 UVA - 11419(二分图最小覆盖数) author: "luowentaoaa" catalog: true mathjax ...

  5. SAM I AM UVA - 11419 最小点集覆盖 要输出具体覆盖的行和列。

    /** 题目:SAM I AM UVA - 11419 链接:https://vjudge.net/problem/UVA-11419 题意:给定n*n的矩阵,'X'表示障碍物,'.'表示空格;你有一 ...

  6. POJ 3041 Asteroids 最小覆盖数

    http://poj.org/problem?id=3041 题目大意: 一辆宇宙飞船在一个小行星带中,你知道,这很危险.他有一种武器,可以清除掉一行或一列的小行星.问把小行星全部清除最少的武器使用次 ...

  7. UVa 11419 我是SAM(最小点覆盖+路径输出)

    https://vjudge.net/problem/UVA-11419 题意:一个网格里面有一些目标,可以从某一行,某一列发射一发子弹,可以打掉它:求最少的子弹,和在哪里打? 思路: 每个点的x坐标 ...

  8. SAM I AM UVA - 11419(最小顶点覆盖+输出一组解)

    就是棋盘问题输出一组解 https://blog.csdn.net/llx523113241/article/details/47759745 http://www.matrix67.com/blog ...

  9. Uva 11419 我是SAM

    题目链接:https://vjudge.net/problem/UVA-11419 题意:一个网格里面有一些目标,可以从某一行,某一列发射一发子弹,可以打穿: 求最少的子弹,和在哪里打? 分析: 听说 ...

随机推荐

  1. 使用_beginThreadex创建多线程(C语言版多线程)

    _beginThreadex创建多线程解读 一.需要的头文件支持 #include <process.h>         // for _beginthread() 需要的设置:Proj ...

  2. 对widget使用WM_SetCallback

    当我们对widget使用WM_SetCallback拦截并处理一些消息,可能需要在处理完某些消息后继续调用该Widget原来的callback,典型的例子是WM_DELETE,因为几乎所有widget ...

  3. Spring MVC的困惑url-pattern /和/*的区别

    今天在写项目时发现一个spring 总是报org.springframework.web.servlet.DispatcherServlet noHandlerFound警告: No mapping ...

  4. osx安装启动mysql

    安装mysql 最新版 56 brew install mysql 1 启动报错 ben:~ soul$ which mysql /usr/local/bin/mysql ben:~ soul$ my ...

  5. CFGym 101490E 题解

    一.题目链接 http://codeforces.com/gym/101490 二.题面 三.题意 给你一个图,n个点,m条边,一个x,从顶点1走到顶点n.假设从顶点1走到顶点n的最短路为d,x代表你 ...

  6. PyDev for eclipse 插件下载地址

    PyDev for eclipse 插件下载地址http://sourceforge.net/projects/pydev/files/pydev/python解释器以及python类库下载地址htt ...

  7. string类型版本号比较

    直接上代码吧: boolean CompareVersion(string softVersion1, string softVersion2) { ) { return true; } return ...

  8. MyBatis 延迟加载 加载时机

  9. eclipse里启动tomcat无法通过127.0.0.1访问

    在eclipse里面添加tomcat,再发布一个web项目进去,然后启动tomcat,日志显示tomcat在eclipse里面正常启动,hosts里面配置了ip跟域名的对应关系. 通过域名访问可以正常 ...

  10. Thrift分析

    [Thrift分析] Thrift定义一套IDL(Interface Definition Language)用于描述接口,通常后缀名为.thrift,通过thrift程序把.thrift文件导出成各 ...