POJ——T 1422 Air Raid

http://poj.org/problem?id=1422

Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 8579   Accepted: 5129

Description

Consider a town where all the streets are one-way and each street leads from one intersection to another. It is also known that starting from an intersection and walking through town‘s streets you can never reach the same intersection i.e. the town‘s streets form no cycles.

With these assumptions your task is to write a program that finds the minimum number of paratroopers that can descend on the town and visit all the intersections of this town in such a way that more than one paratrooper visits no intersection. Each paratrooper lands at an intersection and can visit other intersections following the town streets. There are no restrictions about the starting intersection for each paratrooper.

Input

Your program should read sets of data. The first line of the input file contains the number of the data sets. Each data set specifies the structure of a town and has the format:

no_of_intersections 
no_of_streets 
S1 E1 
S2 E2 
...... 
Sno_of_streets Eno_of_streets

The first line of each data set contains a positive integer no_of_intersections (greater than 0 and less or equal to 120), which is the number of intersections in the town. The second line contains a positive integer no_of_streets, which is the number of streets in the town. The next no_of_streets lines, one for each street in the town, are randomly ordered and represent the town‘s streets. The line corresponding to street k (k <= no_of_streets) consists of two positive integers, separated by one blank: Sk (1 <= Sk <= no_of_intersections) - the number of the intersection that is the start of the street, and Ek (1 <= Ek <= no_of_intersections) - the number of the intersection that is the end of the street. Intersections are represented by integers from 1 to no_of_intersections.

There are no blank lines between consecutive sets of data. Input data are correct.

Output

The result of the program is on standard output. For each input data set the program prints on a single line, starting from the beginning of the line, one integer: the minimum number of paratroopers required to visit all the intersections in the town.

Sample Input

2
4
3
3 4
1 3
2 3
3
3
1 3
1 2
2 3

Sample Output

2
1

Source

Dhaka 2002

最短路径覆盖==总点数-最大匹配数

 1 #include <cstring>
 2 #include <cstdio>
 3
 4 using namespace std;
 5
 6 int n,map[123][123],match[123];
 7 bool vis[123];
 8
 9 bool find(int u)
10 {
11     for(int v=1;v<=n;v++)
12         if(map[u][v]&&!vis[v])
13         {
14             vis[v]=1;
15             if(!match[v]||find(match[v]))
16             {
17                 match[v]=u;
18                 return true;
19             }
20         }
21     return false;
22 }
23
24 int AC()
25 {
26     int t;scanf("%d",&t);
27     for(int m,ans;t--;)
28     {
29         scanf("%d%d",&n,&m);ans=n;
30         for(int u,v;m--;map[u][v]=1)
31             scanf("%d%d",&u,&v);
32         for(int i=1;i<=n;i++)
33         {
34             memset(vis,0,sizeof(vis));
35             if(find(i)) ans--;
36         }
37         printf("%d\n",ans);
38         memset(map,0,sizeof(map));
39         memset(match,0,sizeof(match));
40     }
41     return 0;
42 }
43
44 int I_want_AC=AC();
45 int main(){;}
时间: 2024-08-05 14:09:08

POJ——T 1422 Air Raid的相关文章

poj 1422 Air Raid (二分匹配)

Air Raid Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 6520   Accepted: 3877 Description Consider a town where all the streets are one-way and each street leads from one intersection to another. It is also known that starting from an i

POJ 1422 Air Raid(二分图匹配最小路径覆盖)

POJ 1422 Air Raid 题目链接 题意:给定一个有向图,在这个图上的某些点上放伞兵,可以使伞兵可以走到图上所有的点.且每个点只被一个伞兵走一次.问至少放多少伞兵 思路:二分图的最小路径覆盖,每个点拆成两个点,然后根据有向边连边,然后答案为n - 最大匹配数 代码: #include <cstdio> #include <cstring> #include <vector> #include <algorithm> using namespace

【POJ 1151】Air Raid

[POJ 1151]Air Raid DAG图(无回路有向图)的最小路径覆盖问题 = 最大匹配+(n-2*最大匹配) (最大匹配*2为所有可连的点 n-2*最大匹配可求出所有独立点 再加上最大匹配即为最小所需路径) 以下引用博客:http://blog.csdn.net/whosemario/article/details/8513836 定义: 一个有向无环图,要求用尽量少的不相交的简单路径覆盖所有的节点. 构图: 建立一个二分图,把原图中的所有节点分成两份(X集合为i,Y集合为i'),如果原

POJ 1422 Air Raid (二分图最小点集覆盖 匈牙利算法)

Air Raid Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 7236   Accepted: 4295 Description Consider a town where all the streets are one-way and each street leads from one intersection to another. It is also known that starting from an i

poj——1422 Air Raid

Air Raid Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 8577   Accepted: 5127 Description Consider a town where all the streets are one-way and each street leads from one intersection to another. It is also known that starting from an i

POJ 1422 Air Raid

题目链接: http://poj.org/problem?id=1422 Description Consider a town where all the streets are one-way and each street leads from one intersection to another. It is also known that starting from an intersection and walking through town's streets you can

poj 1422 Air Raid 最少路径覆盖

题目链接:http://poj.org/problem?id=1422 Consider a town where all the streets are one-way and each street leads from one intersection to another. It is also known that starting from an intersection and walking through town's streets you can never reach t

poj 1422 Air Raid (最小路径覆盖)

链接:poj 1422 题意:有n个点和m条有向边,现在要在点上放一些伞兵,伞兵可以沿着图走, 直到不能走为止,每条边有且仅有一个伞兵走过,问最少放多少个伞兵 思路:求的最小路径覆盖,用二分图来做 对于这样的一个有向图做最小路径覆盖,首先建图 然后每一条有向边对应左边的点指向右边的点 这样建好图之后求最大匹配数 最小路径覆盖=点数-最大匹配数 [cpp] view plaincopyprint? #include<stdio.h> #include<string.h> int n,

[POJ] 1422 Air Raid(最小路径覆盖)

题目地址:http://poj.org/problem?id=1422 一个地图上有n个小镇,以及连接着其中两个小镇的有向边,而且这些边无法形成回路.现在选择一些小镇空降士兵(1个小镇最多1个士兵),士兵能沿着边走到尽头,问最少空降几个士兵,能遍历完所有的小镇.最小路径覆盖问题.先拆点,将每个点分为两个点,左边是1到n个点,右边是1到n个点然后每一条有向边对应左边的点指向右边的点 因为最小路径覆盖 = 节点数 - 最大匹配数,所以匈牙利算法求一下二分图最大匹配就能得出结果了. 1 #includ