博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ1422 Air Raid 【DAG最小路径覆盖】
阅读量:6578 次
发布时间:2019-06-24

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

Air Raid
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 6763   Accepted: 4034

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

2433 41 32 3331 31 22 3

Sample Output

21

Source

对于DAG,求最小路径覆盖有例如以下公式:最小路径覆盖数 = 节点数 - 相应的二分图最大匹配数。

用电脑自带的绘图画了张草图,挫爆了 -_-!

题意:输入数据具体解释,t组数据。n个节点(从1開始)。m条有向边。u到v。

题解:套公式。

#include 
#include
const int maxn = 125;int n, m;int cx[maxn], cy[maxn];bool visy[maxn], G[maxn][maxn];void getMap() { memset(G, 0, sizeof(G)); int u, v; scanf("%d%d", &n, &m); while(m--) { scanf("%d%d", &u, &v); G[u][v] = true; }}int findPath(int x) { int i; for(i = 1; i <= n; ++i) { if(G[x][i] && !visy[i]) { visy[i] = 1; if(cy[i] == -1 || findPath(cy[i])) { cy[i] = x; return 1; } } } return 0;}int MaxMatch() { int ans = 0, i; memset(cx, -1, sizeof(cx)); memset(cy, -1, sizeof(cy)); for(i = 1; i <= n; ++i) { memset(visy, 0, sizeof(visy)); if(cx[i] == -1) ans += findPath(i); } return ans;}void solve() { printf("%d\n", n - MaxMatch());}int main() { // freopen("stdin.txt", "r", stdin); int t; scanf("%d", &t); while(t--) { getMap(); solve(); } return 0;}

你可能感兴趣的文章
leetcode -- Combination Sum II
查看>>
mina高并发短连接导致java.io.IOException: Too many open files解决方案
查看>>
mount nfs 经常出错信息总结(转)
查看>>
[ubuntu] ubuntu13.04安装rabbitcvs管理svn
查看>>
【驱动笔记10】再谈IRP
查看>>
HDUOJ----(1031)Design T-Shirt
查看>>
vector中的find
查看>>
〖Windows〗zigbee实验之cygwin编译tinyos.jar编译出错的解决方法
查看>>
1z0-052 q209_7
查看>>
PIN码计算锦集
查看>>
SharePoint 2013 自定义扩展菜单(二)
查看>>
[Unity3D]再次点击以退出程序
查看>>
架构师的97种习惯
查看>>
PHP 开发 APP 接口 学习笔记与总结 - XML 方式封装通信接口
查看>>
《区域经理》笔记
查看>>
前端神器之Sublime Text2/3简单明了使用总结
查看>>
**PHP删除数组中特定元素的两种方法array_splice()和unset()
查看>>
linux和windows文件名称长度限制
查看>>
对一道编程题的后续思考
查看>>
IT基础架构规划方案之实际网络设计案例
查看>>