博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 2594 Treasure Exploration(最小可相交路径覆盖)题解
阅读量:5927 次
发布时间:2019-06-19

本文共 1213 字,大约阅读时间需要 4 分钟。

题意:有n个点,m条单向边,每个机器人能沿着单向边走,能重复经过一个点,问最少几个机器人走遍n个点

思路:原来以前学的都是不能相交的算法....可相交的做法是跑Floyd把能到达的都加上边,然后跑最小覆盖

代码:

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
typedef long long ll;using namespace std;const int maxn = 500 + 10;const int MOD = 1e9 + 7;const int INF = 0x3f3f3f3f;int linker[maxn], n, m;int g[maxn][maxn];bool used[maxn];bool dfs(int u){ for(int v = 1; v <= n; v++){ if(g[u][v] && !used[v]){ used[v] = true; if(linker[v] == -1 || dfs(linker[v])){ linker[v] = u; return true; } } } return false;}int hungry(){ int res = 0; memset(linker, -1, sizeof(linker)); for(int u = 1; u <= n; u++){ memset(used, false, sizeof(used)); if(dfs(u)) res++; } return res;}void floyd(){ for(int k = 1; k <= n; k++){ for(int i = 1; i <= n; i++){ for(int j = 1; j <= n; j++){ if(g[i][k] && g[k][j]) g[i][j] = 1; } } }}int main(){ while(~scanf("%d%d", &n, &m) && n + m){ memset(g, 0, sizeof(g)); while(m--){ int u, v; scanf("%d%d", &u, &v); g[u][v] = 1; } floyd(); printf("%d\n", n - hungry()); } return 0;}

 

转载于:https://www.cnblogs.com/KirinSB/p/10472998.html

你可能感兴趣的文章
专利暗示苹果可能推“MagSafe-to-USB-C”转换接头
查看>>
outlook recall function note
查看>>
webservice学习
查看>>
Silverlight Navigation-Silverlight页面间自定义导航
查看>>
linux 通过shell上传zip包到指定ftp
查看>>
windows2003下防火墙ISA大型实验
查看>>
4天完成一个物联网项目
查看>>
Git 分支管理详解
查看>>
XenApp / XenDesktop 7.6 初体验三 StoreFront和Citrix Receiver
查看>>
Endeca 安装/运行过程常见问题诊断(个人经验总结)
查看>>
备份和恢复概述
查看>>
Unix EM乱码问题
查看>>
App-V 参考工具之(五):SFT Explorer
查看>>
在windows 系统中建立隐藏管理员账户
查看>>
原创经典:SQLSERVER SendStringParametersAsUnicode引发的疑案 推荐
查看>>
Android:UI设置-横竖屏转换、输入法键盘相关设置
查看>>
SCCM 2012系列12 操作系统播发①
查看>>
VS2005+Crystal Report开发Web应用
查看>>
【cocos2d-x从c++到js】11:JS与C++的交互3——C++和JS类型转换
查看>>
在VmWare Workstation 6.5上安装Esx 3.5 U3之一
查看>>