Treasure Exploration
Time Limit: 6000MS   Memory Limit: 65536K
Total Submissions: 6284   Accepted: 2533

Description

Have you ever read any book about treasure exploration? Have you ever see any film about treasure exploration? Have you ever explored treasure? If you never have such experiences, you would never know what fun treasure exploring brings to you. 
Recently, a company named EUC (Exploring the Unknown Company) plan to explore an unknown place on Mars, which is considered full of treasure. For fast development of technology and bad environment for human beings, EUC sends some robots to explore the treasure. 
To make it easy, we use a graph, which is formed by N points (these N points are numbered from 1 to N), to represent the places to be explored. And some points are connected by one-way road, which means that, through the road, a robot can only move from one end to the other end, but cannot move back. For some unknown reasons, there is no circle in this graph. The robots can be sent to any point from Earth by rockets. After landing, the robot can visit some points through the roads, and it can choose some points, which are on its roads, to explore. You should notice that the roads of two different robots may contain some same point. 
For financial reason, EUC wants to use minimal number of robots to explore all the points on Mars. 
As an ICPCer, who has excellent programming skill, can your help EUC?

Input

The input will consist of several test cases. For each test case, two integers N (1 <= N <= 500) and M (0 <= M <= 5000) are given in the first line, indicating the number of points and the number of one-way roads in the graph respectively. Each of the following M lines contains two different integers A and B, indicating there is a one-way from A to B (0 < A, B <= N). The input is terminated by a single line with two zeros.

Output

For each test of the input, print a line containing the least robots needed.

Sample Input

1 0
2 1
1 2
2 0
0 0

Sample Output

1
1
2

Source

POJ Monthly--2005.08.28,Li Haoyuan
 1 //1164K    907MS    C++    1019B    2013-11-09 17:45:32
 2 /*
 3
 4    题意:
 5        给你一个图,要求用最少的机器人遍历全部的点
 6
 7    最短路+二分匹配:
 8        这题有点意思,开始WA好几次没想通,就看了下别人的解题报告,果然被坑课..
 9
10        二分图的最小路径覆盖是要求每个点只能通过一次,而此题则是可以通过多次
11        eg.
12            5 5
13            1 3
14            2 3
15            3 4
16            3 5
17        使用二分图的最小路径覆盖得出的答案是:n-最大匹配=3
18                          此题得出的答案应是:n-最大匹配=2
19
20        故在读完图后要再次构图,使用floyd(此题数据较弱),然后是某些点可以连通
21        在使用求最小路径覆盖即可求出解
22
23 */
24 #include<stdio.h>
25 #include<string.h>
26 int g[505][505];
27 int match[505];
28 int vis[505];
29 int n,m;
30 void floyd()
31 {
32     for(int k=1;k<=n;k++)
33         for(int i=1;i<=n;i++)
34             for(int j=1;j<=n;j++)
35                 if(g[i][k] && g[k][j])
36                     g[i][j]=1;
37 }
38 int dfs(int x)
39 {
40     for(int i=1;i<=n;i++){
41         if(!vis[i] && g[x][i]){
42             vis[i]=1;
43             if(match[i]==-1 || dfs(match[i])){
44                 match[i]=x;
45                 return 1;
46             }
47         }
48     }
49     return 0;
50 }
51 void hungary()
52 {
53     memset(match,-1,sizeof(match));
54     int cnt=0;
55     for(int i=1;i<=n;i++){
56         memset(vis,0,sizeof(vis));
57         if(dfs(i)) cnt++;
58     }
59     printf("%d\n",n-cnt);
60 }
61 int main(void)
62 {
63     int a,b;
64     while(scanf("%d%d",&n,&m),n+m)
65     {
66         memset(g,0,sizeof(g));
67         for(int i=0;i<m;i++){
68             scanf("%d%d",&a,&b);
69             g[a][b]=1;
70         }
71         floyd();
72         hungary();
73     }
74     return 0;
75 } 

转载于:https://www.cnblogs.com/GO-NO-1/articles/3415896.html

poj 2594 Treasure Exploration相关推荐

  1. poj 2594 Treasure Exploration 最小路径覆盖

    题目链接:http://poj.org/problem?id=2594 建图很重要!!! 大致题意: 给出一个由n个顶点m条边组成的有向无环图.求最少可以同时存在多少路径,使得这些路径可以覆盖所有的点 ...

  2. POJ 2594 Treasure Exploration (可相交最小路径覆盖)

    题意 给你张无环有向图,问至少多少条路径能够覆盖该图的所有顶点--并且,这些路径可以有交叉. 思路 不是裸的最小路径覆盖,正常的最小路径覆盖中两个人走的路径不能有重复的点,而本题可以重复. 当然我们仍 ...

  3. POJ - 2594 Treasure Exploration(最小路径覆盖-二分图最大匹配+传递闭包)

    题目链接:点击查看 题目大意:给出一个有向图,现在需要让最少的机器人沿着图遍历所有点,求出最少需要机器人的数量,注意每个点可以重复遍历 题目分析:因为要遍历所有点,所以还是变成了二分图的最小路径覆盖问 ...

  4. POJ Treasure Exploration 【DAG交叉最小路径覆盖】

    传送门:http://poj.org/problem?id=2594 Treasure Exploration Time Limit: 6000MS   Memory Limit: 65536K To ...

  5. 【POJ - 2594】Treasure Exploration(floyd传递闭包 + 最小路径覆盖,图论)

    题干: Have you ever read any book about treasure exploration? Have you ever see any film about treasur ...

  6. POJ2594 Treasure Exploration[DAG的最小可相交路径覆盖]

    Treasure Exploration Time Limit: 6000MS   Memory Limit: 65536K Total Submissions: 8301   Accepted: 3 ...

  7. POJ2594 Treasure Exploration

    Treasure Exploration Time Limit: 6000MS   Memory Limit: 65536K Total Submissions: 8879   Accepted: 3 ...

  8. POJ--2594|Treasure Exploration

    Treasure Exploration Time Limit: 6000MS   Memory Limit: 65536K Total Submissions: 8223   Accepted: 3 ...

  9. Treasure Exploration

    Description Have you ever read any book about treasure exploration? Have you ever see any film about ...

最新文章

  1. as3.0中如何阻止事件冒泡?
  2. VSCode中屏蔽文件files.exclude和屏蔽文件搜索search.exclude
  3. 七边形简单画法步骤图_零基础国画教程:分步骤图解教你画3种常见树画法,简单易学...
  4. vue 二维数组_最近研究Vue源码时我发现的一些好玩函数
  5. mysql batch mode_MySQL数据库增量日志解析工具 Canal 实战
  6. ajax实现表单验证 html,Ajax+ajax做的表单验证
  7. 零售业有效利用物联网的几种方法
  8. select、poll和epoll的总结对比
  9. Debian下措置惩罚上网慢的成绩
  10. Windows安装CUDAcuDNNanaconda
  11. linux 默认文件属性,linux - 文件夹、文件默认属性: umask使用
  12. 按键精灵引流脚本实操
  13. VMWARE平台STS证书过期
  14. Python-Curses模块
  15. 黑魂3无法从服务器获取信息,黑魂3怎么读取信息 | 手游网游页游攻略大全
  16. 同步、异步 阻塞、非阻塞
  17. 承包了我今日笑点的AI“文心一言”,被质疑是“套壳”?
  18. SAS学习第9章:卡方检验之适合性检验与独立性检验
  19. win10 创建访客_建立一个访客会很喜欢的网站
  20. vue.js 我在看别人的vue项目的时候,路由配置的path 路径 里面为什么有hidden:true/false

热门文章

  1. JavaScript Function中你可能不知道的知识点
  2. 图的广度优先搜索--python实现
  3. Csocket OnReceive接收数据部分(解决接收数据不全的问题+获取时间+将数据写入文本文档)
  4. Extract Method(提炼函数)
  5. 【第十一章】提炼子类/超类/接口/类
  6. 谷歌Project Ara,将开启下一个智能手机时代
  7. Linux命令 - mkdir命令
  8. Java猿社区—Redis一篇系列—第二章、Redis入门和安装
  9. 机房服务器维护表,服务器机房维护记录表
  10. ccd视觉定位教程_什么是CCD视觉定位自动焊锡机器人?