博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Air Raid
阅读量:7019 次
发布时间:2019-06-28

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

Air Raid Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u

Submit

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
 题意:单向路,最少伞兵可以路过所有点。

最小路径覆盖:在二分图中寻找一个尽量小的边集,使图中每一个点都是该边集中某条边的端点。

  最小路径覆盖 == 顶点数 - 最大匹配。

  证明:因为一条边最多可以包含两个顶点,所以我们选边的时候让这样的边尽量多,也就是说最大匹配的边集数目咯。剩下的点就只能一个边连上一个点到集合里啦。

http://www.cnblogs.com/alihenaixiao/p/4695298.html
1 #include
2 #include
3 #include
4 5 using namespace std; 6 7 #define N 1200 8 9 int n, m, vis[N], maps[N][N], used[N];10 11 int found(int u)12 {13 for(int i = 1; i <= n; i++)14 {15 if(maps[u][i] && !vis[i])16 {17 vis[i] = 1;18 if(!used[i] || found(used[i]))19 {20 used[i] = u;21 return true;22 }23 }24 }25 return false;26 }27 28 int main()29 {30 int t, x, y;31 32 scanf("%d", &t);33 34 while(t--)35 {36 memset(maps, 0, sizeof(maps));37 memset(used, 0, sizeof(used));38 39 scanf("%d%d", &n, &m);40 41 while(m--)42 {43 scanf("%d%d", &x, &y);44 maps[x][y] = 1;45 }46 int num = 0;47 for(int i = 1; i <= n; i++)48 {49 memset(vis, 0, sizeof(vis));50 if(found(i))51 num++;52 }53 printf("%d\n", n-num);54 }55 return 0;56 }

 

转载于:https://www.cnblogs.com/Tinamei/p/4720088.html

你可能感兴趣的文章
Codeforces Round #294 (Div. 2) A and B and Lecture Rooms(LCA 倍增)
查看>>
SpringBoot 使用MultipartFile上传文件相关问题解决方案
查看>>
前段页面搜索功能实现
查看>>
枚举类型的用法
查看>>
allegro学习--区域约束
查看>>
Java IO: Buffered和Data
查看>>
sql语句查询结果合并union all用法
查看>>
全志TinaLinux编译错误fatal error: unicode/ucnv.h: No such file or directory
查看>>
数据挖掘导论 第3章 探索数据
查看>>
片上总线Wishbone 学习(一)片上总线综述
查看>>
20155319 2016-2017-2《Java程序设计》课程总结
查看>>
poj 2586
查看>>
第四次作业
查看>>
第十三周的学习进度条
查看>>
arp协议及应用
查看>>
BZOJ 1026: [SCOI2009]windy数
查看>>
LaunchActivity\StartActivity详细时序图
查看>>
李国庆俞渝故事:创当当、上市到聚焦三大品类
查看>>
配置SpringMVC
查看>>
selenium-如何上传非input格式的图片
查看>>