HUST 1027 Enemy Target!
求二分图的最小点覆盖集,并输出
对于每一个a[i][j]=1,我们从行i-->列j建立一条边
显然,这张图是一张二分图。左边的节点代表删除哪一行,右边的节点代表删除哪一列。中间的边代表所有a[i][j]为1的点。
现在,我们需要做的事情就是找出最少的点,使这些点覆盖住所有的边(即删去哪几行哪几列,没有士兵)
最少的点,使这些点覆盖住所有的边 这个东西是最小点覆盖集。
对于一张二分图来说,在数量上,最小点覆盖集=最大匹配
如果 最大匹配>坦克数量,那么输出无解
剩下的情况就是有解了,如何寻找解?这问题困扰了我很久......最后还是看了别人的博客。
此外,这题目点最多有2000个,为什么匈牙利算法可以AC......不是o(n^3)效率的吗......
- 详见北京大学神犇Matrix67的讲解http://blog.csdn.net/niushuai666/article/details/7036897
- #include<cstdio>
- #include<cstring>
- #include<cmath>
- #include<vector>
- #include<algorithm>
- using namespace std;
- const int MAXN = + ;
- int nx, ny;
- int g[MAXN][MAXN];
- int cx[MAXN], cy[MAXN];
- int mk[MAXN];
- int ROW, COLUMN, N;
- char s[MAXN][MAXN];
- vector<int>Gl[MAXN];
- vector<int>Gr[MAXN];
- vector<int> ansr;
- vector<int> ansc;
- int flagl[MAXN], flagr[MAXN];
- int flag[MAXN];
- int mat[MAXN][MAXN];
- int path(int u)
- {
- for (int v = ; v<ny; v++)
- {
- if (g[u][v] && !mk[v])
- {
- mk[v] = ;
- if (cy[v] == - || path(cy[v]))
- {
- cx[u] = v;
- cy[v] = u;
- return ;
- }
- }
- }
- return ;
- }
- int MaxMatch()
- {
- int res = ;
- memset(cx, -, sizeof(cx));
- memset(cy, -, sizeof(cy));
- for (int i = ; i<nx; i++)
- {
- if (cx[i] == -)
- {
- memset(mk, , sizeof(mk));
- res = res + path(i);
- }
- }
- return res;
- }
- void dfs(int now, int x)
- {
- if (x==)
- {
- flagl[now] = ;
- for (int i = ; i<Gl[now].size(); i++)
- if (flagr[Gl[now][i]] == && cx[now] == Gl[now][i])
- dfs(Gl[now][i], );
- }
- else
- {
- flagr[now] = ;
- for (int i = ; i<Gr[now].size(); i++)
- if (flagl[Gr[now][i]] == && cy[now] != Gr[now][i])
- dfs(Gr[now][i], );
- }
- }
- int main()
- {
- while (~scanf("%d%d%d", &ROW, &COLUMN, &N))
- {
- for (int i = ; i < ROW; i++) scanf("%s", s[i]);
- memset(g, , sizeof g);
- for (int i = ; i<=ROW; i++) Gl[i].clear();
- for (int i = ; i<=COLUMN; i++) Gr[i].clear();
- for (int i = ; i < ROW; i++)
- for (int j = ; j < COLUMN; j++)
- if (s[i][j] == '')
- {
- g[i][j] = ;
- Gl[i].push_back(j);
- Gr[j].push_back(i);
- }
- nx = ROW;
- ny = COLUMN;
- int ans = MaxMatch();
- if (ans>N) printf("NOT ENOUGH TANK\n");
- else
- {
- printf("%d\n", ans);
- memset(flagl, , sizeof flagl);
- memset(flagr, , sizeof flagr);
- memset(flag, , sizeof flag);
- memset(mat, , sizeof mat);
- ansr.clear();
- ansc.clear();
- for (int i = ; i<ROW; i++) if (cx[i] != -) flag[cx[i]] = ;
- for (int j = ; j<COLUMN; j++) if (!flag[j]) dfs(j, );
- for (int i = ; i<ROW; i++) if (flagl[i]) ansr.push_back(i);
- for (int i = ; i<COLUMN; i++) if (!flagr[i]) ansc.push_back(i);
- printf("ROW:");
- for (int i = ; i < ansr.size(); i++) printf(" %d", ansr[i]+);
- printf("\n");
- printf("COLUMN:");
- for (int i = ; i < ansc.size(); i++) printf(" %d", ansc[i]+);
- printf("\n");
- }
- }
- return ;
- }
HUST 1027 Enemy Target!的更多相关文章
- Unity BehaviorDesigner行为树基础总结
BehaviorDesigner——行为树,用于控制和实现AI逻辑,类似于这样: 上面这个行为树实现了这样的逻辑: 当Player有Input时按照Input值来移动,无Input时查找最近的可攻击目 ...
- 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. ...
- UVa 7146 Defeat the Enemy(贪心)
题目链接: 传送门 Defeat the Enemy Time Limit: 3000MS Memory Limit: 32768 KB Description Long long ago t ...
- Defeat the Enemy UVALive - 7146
Long long ago there is a strong tribe living on the earth. They always have wars and eonquer other ...
- UVA LIVE 7146 Defeat the Enemy
这个题跟codeforces 556 D Case of Fugitive思路一样 关于codeforces 556 D Case of Fugitive的做法的链接http://blog.csdn. ...
- UVALive 7146 Defeat The Enemy
Defeat The Enemy Time Limit: 3000MS Memory Limit: Unknown 64bit IO Format: %lld & %llu Long long ...
- Neither BindingResult nor plain target object for bean name 'command' available as request attribute
最近用JSR303在表单提交时使用Java Bean Validation验证数据.报错堆栈如下: java.lang.IllegalStateException: Neither BindingRe ...
- 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出同一表中的某些值 ...
- jQuery之常用且重要方法梳理(target,arguments,slice,substring,data,trigger,Attr)-(一)
1.jquery data(name) data() 方法向被选元素附加数据,或者从被选元素获取数据. $("#btn1").click(function(){ $(" ...
随机推荐
- 转 : 如何用sys as sysdba权限连接数据库进行EXP/IMP
使用sys as sysdba权限进行EXP/IMP与其它用户稍有不同,详细内容如下(摘自metalink) Applies to: Oracle Server - Enterprise Editio ...
- 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 ...
- Day03——类、值和对象
1.js数字-NaN和Infinity 1.在js中,有一种特殊的数值,叫做NaN(Not a Number),表示本来要返回数值的操作却未返回数值的情况,例如0除以0的操作,在其它语言中会报错误或异 ...
- Struts2实现国际化
public class I18nAction extends ActionSupport { private static final long serialVersionUID = -693330 ...
- Qt 5.5 tr usage
in .cpp file, wherever you want, wrap QString with a tr("somesz") rendering it ready to be ...
- 视频 -> 帧 浅析
原创:转载请注明出处 关于帧率 首先以下几个概念必须弄清楚 1.一个帧就是一个画面 2.视频有无数个帧组成 3.表达时间的量 CMTime 的定义: typedef struct { CMTimeV ...
- HttpURLConnection请求网络数据的GET请求
//清单文件中添加权限 <uses-permission android:name="android.permission.INTERNET"/> new Thread ...
- js对象大总结2016/4/19
本地对象(非静态对象) 常用的对象Object,Funcion,Array,Boolen,String,Boolen,Number,Date,RegEXP,Error;new一下就能用的 内置对象:( ...
- Disassembly1:HelloWorld
我这里学习汇编语言的思路就是逆向C++源码. 先从最简单的一个程序入手:
- [jQueryUI] – Chosen:select下拉选择框美化插件及问题
Chosen 是一个支持jquery的select下拉框美化插件,它能让丑陋的.很长的select选择框变的更好看.更方便.不仅如此,它更扩展了select,增加了自动筛选的功能.它可对列表进行分组, ...