HDU2433—Travel (BFS,最短路)
Travel
Time Limit: 10000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3059 Accepted Submission(s): 1051
Problem Description
One day, Tom traveled to a country named BGM. BGM is a small country, but there are N (N <= 100) towns in it. Each town products one kind of food, the food will be transported to all the towns. In addition, the trucks will always take the shortest way. There are M (M <= 3000) two-way roads connecting the towns, and the length of the road is 1.
Let SUM be the total distance of the shortest paths between all pairs of the towns. Please write a program to calculate the new SUM after one of the M roads is destroyed.
Input
The input contains several test cases.
The first line contains two positive integers N, M. The following M lines each contains two integers u, v, meaning there is a two-way road between town u and v. The roads are numbered from 1 to M according to the order of the input.
The input will be terminated by EOF.
Output
Output M lines, the i-th line is the new SUM after the i-th road is destroyed. If the towns are not connected after the i-th road is destroyed, please output “INF” in the i-th line.
Sample Input
5 4
5 1
1 3
3 2
5 4
2 2
1 2
1 2
Sample Output
INF
INF
INF
INF
2
2
Source
2008 Asia Chengdu Regional Contest Online
Recommend
lcy | We have carefully selected several similar problems for you: 2429 2437 2430 2436 2435
大意:
给定一个图,N个节点,M条双向边。记i节点到其他节点的最短距离的和为Si,求Si(1<=i<=N)的和sum
然后假设其中一个边被毁,求此时的sum
思路:
若使用那几个最短路算法,之后每假设一个边被毁,就需要全部重新计算一遍,时间复杂度很高
注意到每个边的权值都为1,此时用BFS求最短路径的话会很方便
而且,BFS可以很好地解决之后删边的问题:
只要记录一下第一次每个节点的BFS树,之后再判断要删的点是否在树枝上即可
两处优化:
1.原图为非连通图,无论删哪条边,距离恒为INF
2.有重边,删除其中一条对全图无影响(因此在记录图时,记录的是两点之间边的个数)
代码:
#include <bits/stdc++.h>
using namespace std; typedef struct Edge
{
int beg, end;
} Edge; Edge edge[3001];
int Sum[101] = {0};
int Map[101][101];
bool visited[101];
int prec[101][101]; // prec[x][y],用来存储第一遍第x个节点的BFS树中y节点的上一个节点
int N, M; int BFS(int k, bool is_preprocess = true)//第二个参数表示的是否是第一遍遍历所有节点
{
int dis[101] = {0}; //记录到根节点的距离
memset(visited, false, sizeof(visited));
queue<int> Q;
visited[k] = true;
Q.push(k);
int cnt = 1;
int Sum = 0;
while (!Q.empty())
{
int i = Q.front(); Q.pop();
for (int j = 1; j <= N; ++j)
{
if (!visited[j] && Map[i][j] > 0)
{
visited[j] = true;
if (is_preprocess)
prec[k][j] = i; //记录前驱,只记录第一次遍历的BFS树的节点前驱,由于BFS时要对每个节点都进行一遍BFS所以需要记录n个BFS树
dis[j] = dis[i] + 1; //记录到根节点的距离
Sum += dis[j];
++cnt; //记录一下BFS中的节点数目,最后判断是否能够到达所有节点(cnt==N)
Q.push(j);
}
}
}
return (cnt == N) ? Sum : -1;
} int main()
{
int x, y, sum ;
while (cin >> N >> M)
{
memset(Sum, 0, sizeof(Sum));
memset(Map, 0, sizeof(Map));
memset(prec, 0, sizeof(prec));
int i = 1;
for ( ; i <= M; ++i)
{
//建树
cin >> x >> y;
Map[x][y]++;
Map[y][x]++;//这样记录路径的话,可以方便的记录重边
edge[i].beg = x;
edge[i].end = y;
}
sum = 0;
i = 1;
for (; i <= N; ++i)
{
Sum[i] = BFS(i); //需要存储每个节点的BFS树的路径和
if (Sum[i] == -1)
break;
else
sum += Sum[i];
}
if (i <= N) //优化:原图为非连通图,无论删哪条边,距离恒为INF
{
for (int i = 0; i < M; ++i)
puts("INF");
continue;
}
for (int i = 1; i <= M; ++i)
{
int x = edge[i].beg;
int y = edge[i].end;
if (Map[x][y] > 1) //优化:有重边,删除其中一条对全图无影响
{
cout << sum << endl;
}
else //删的是割边(不可能有Map[][]==0,因为前边过滤了非连通图)
{
int sum1 = 0, j = 1, s1;
for (; j <= N; ++j)//遍历全部顶点,蛮力法
{
if (prec[j][y] == x || prec[j][x] == y) //x-y在第j棵bfs树上,只能蛮力
{
Map[x][y] = Map[y][x] = 0; //删边 s1 = BFS(j, false);
if (s1 == -1) //非连通,直接返回INF
{
Map[x][y] = Map[y][x] = 1; //恢复边
break; //跳转到114行
}
sum1 += s1;
Map[x][y] = Map[y][x] = 1; //恢复边
}
else
{
sum1 += Sum[j];
}
}
if (j <= N)
{
puts("INF");
// continue;
}
else
{
cout << sum1 << endl;
}
}
}
}
return 0;
}
HDU2433—Travel (BFS,最短路)的更多相关文章
- POJ 2251 Dungeon Master (BFS最短路)
三维空间里BFS最短路 #include <iostream> #include <cstdio> #include <cstring> #include < ...
- 【bzoj5049】[Lydsy九月月赛]导航系统 并查集+双向BFS最短路
题目描述 给你一张 $n$ 个点 $m$ 条边的随机图,边权为1.$k$ 次询问两点间最短路,不连通则输出-1. 输入 第一行包含3个正整数n,m,k(2<=n<=100000,1< ...
- 【bzoj1189】[HNOI2007]紧急疏散evacuate BFS最短路+动态加边网络流
题目描述 发生了火警,所有人员需要紧急疏散!假设每个房间是一个N M的矩形区域.每个格子如果是'.',那么表示这是一块空地:如果是'X',那么表示这是一面墙,如果是'D',那么表示这是一扇门,人们可以 ...
- BZOJ 1195 [HNOI2006]最短母串 (Trie图+状压+bfs最短路)
BZOJ1195 LOJ10061 题目大意:给你$n$个模式串,求一个最短且字典序最小的文本串并输出这个串,$n<=12,len<=50$ 首先对所有模式串构造$Trie$图,$Trie ...
- UVa 1600 Patrol Robot (BFS最短路 && 略不一样的vis标记)
题意 : 机器人要从一个m * n 网格的左上角(1,1) 走到右下角(m, n).网格中的一些格子是空地(用0表示),其他格子是障碍(用1表示).机器人每次可以往4个方向走一格,但不能连续地穿越k( ...
- HDU2433 BFS最短路
Travel Time Limit: 10000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Sub ...
- 2019.01.22 SCU4444 Travel(最短路+bfs)
传送门 题意简述:给出一张nnn个点的完全图,有mmm条边边权为aaa其余点边权为bbb,问从111到nnn的最短路. 思路:分类讨论一波即可. (1,n)(1,n)(1,n)的边权为aaa,那么只用 ...
- HDU 2433 Travel (最短路,BFS,变形)
题意: 给出一个图的所有边,每次从图中删除一条边,求任意点对的路径总和(求完了就将边给补回去).(有重边) 思路: #include <bits/stdc++.h> using names ...
- Full Tank? POJ - 3635 (bfs | 最短路)
After going through the receipts from your car trip through Europe this summer, you realised that th ...
随机推荐
- 2018.08.15【2018提高组】模拟A组 比赛总结
总结 T1 这题我一看,哇!好简单啊! 直接建立每一个字母的映射就可以了. 我很快就打完了程序,跳到下一题. 等到比赛快结束时,我才发现了一个可怕的数据: 1 abcdefghijklmnopqrst ...
- kaggle笔记
roc曲线介绍:https://www.cnblogs.com/dlml/p/4403482.html one-hot encode: 1) Drop Categorical Variables 2) ...
- Python 入门 之 初识面向对象
Python 入门 之 初识面向对象 1.初识面向对象编程 (核心--对象) (1)观察以下代码: # 面向过程编程 s = "alexdsb" count = 0 for i i ...
- SVN服务器搭建与配置管理
1.下载和搭建SVN服务器 现在Subversion已经迁移到Apache网站上了,下载地址:http://subversion.apache.org/packages.html,这是二进制文件包的下 ...
- Thinkphp5.0快速入门笔记(3)
学习来源与说明 https://www.kancloud.cn/thinkphp/thinkphp5_quickstart 测试与部署均在windows10下进行学习. 快速入门第三节 获取当前的请求 ...
- <input> disabled 属性
定义和用法 disabled 属性规定应该禁用输入字段. 被禁用的输入字段是无法使用和无法点击的. 如果使用该属性,则会禁用输入字段. 可以对 disabled 属性进行设置,使用户在满足某些条件时( ...
- 利用Mocking Framework 单元测试Entity Framework
一.前言 在实际编写程序时,往往需要与数据库打交道,在单元测试中直接使用数据库又显得太重,如果可以方便的编写一些测试数据,这样更易于检测功能.如何模拟数据库行为便是本篇的主题.微软有教程说明Moq E ...
- weex 轮播如何使用?
下面的内容是你必须要掌握的 1.怎么让banner的宽度和屏幕的宽度相等 2.怎么让banner自动轮播和轮播间隔 3.如何添加指示器 4.如何设置指示器的颜色和大小 5.点击轮播图时触发事件 6.检 ...
- 19、Firewalld防火墙
安全的考虑方向: 安全框架 OSI七层模型 硬件 机架上锁(机柜) 温度 硬件检查 网络 iptables/firewalld 仅允许公司的IP地址能连接服务器的22端口 公有云使用 安全组 系统 没 ...
- nginx配置详解---学校资料
#配置worker进程运行用户 nobody也是一个linux用户,一般用于启动程序,没有密码 user nobody; #配置工作进程数目,根据硬件调整,通常等于CPU数量或者2倍于CPU数量 wo ...