IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> [HDU 4738] Caocao‘s Bridges | Tarjan 求割边 -> 正文阅读

[游戏开发][HDU 4738] Caocao‘s Bridges | Tarjan 求割边

Problem Description

Caocao was defeated by Zhuge Liang and Zhou Yu in the battle of Chibi. But he wouldn’t give up. Caocao’s army still was not good at water battles, so he came up with another idea. He built many islands in the Changjiang river, and based on those islands, Caocao’s army could easily attack Zhou Yu’s troop. Caocao also built bridges connecting islands. If all islands were connected by bridges, Caocao’s army could be deployed very conveniently among those islands. Zhou Yu couldn’t stand with that, so he wanted to destroy some Caocao’s bridges so one or more islands would be seperated from other islands. But Zhou Yu had only one bomb which was left by Zhuge Liang, so he could only destroy one bridge. Zhou Yu must send someone carrying the bomb to destroy the bridge. There might be guards on bridges. The soldier number of the bombing team couldn’t be less than the guard number of a bridge, or the mission would fail. Please figure out as least how many soldiers Zhou Yu have to sent to complete the island seperating mission.

Input

There are no more than 12 test cases.

In each test case:

The first line contains two integers, N and M, meaning that there are N islands and M bridges. All the islands are numbered from 1 to N. ( 2 < = N < = 1000 , 0 < M < = N 2 2 <= N <= 1000, 0 < M <= N^2 2<=N<=1000,0<M<=N2 )

Next M lines describes M bridges. Each line contains three integers U,V and W, meaning that there is a bridge connecting island U and island V, and there are W guards on that bridge. ( U ≠ V a n d 0 < = W < = 10 , 000 U ≠ V and 0 <= W <= 10,000 U?=Vand0<=W<=10,000 )

The input ends with N = 0 and M = 0.

Output
For each test case, print the minimum soldier number Zhou Yu had to send to complete the mission. If Zhou Yu couldn’t succeed any way, print -1 instead.

Sample Input

3 3
1 2 7
2 3 4
3 1 4
3 2
1 2 7
2 3 4
0 0

Sample Output

-1
4

思路:
给定一个n个点,m条边的无向图,求出该图的割边,如果割边不存在输出0,图不连通输出-1
如果说割边的边权为0,那么说答案为1
输入中有重边的情况,重边是不可能为割边的,所以就要输出-1
其余的输出找到的割边的边权[最小值]

struct node{
	int to,nex,w;
}e[maxn];
int cnt,head[1007];
void add(int u,int v){
	e[cnt].to = v;
	e[cnt].nex = head[u];
	head[u] =  cnt ++;
}
int edge[1007][1007];
vector<int> ans;
int tim;
int dfn[1007],low[1007];
void Tarjan(int u,int father) {
	dfn[u] = low[u] = ++tim;
	for(int i=head[u];~i;i=e[i].nex) {
		int to = e[i].to;
		if(!dfn[to]){
			Tarjan(to,u);
			low[u] = min(low[u],low[to]);
			if(low[to] > dfn[u]) {
				ans.push_back(edge[u][to]);
			}
		}else if(to != father) {
			low[u] = min(low[u],dfn[to]);
		}
	}
}
int n,m;
int main() {
	while(1){
		n = read,m = read;
		if(n == 0 && m == 0) break;
		tim = 0,cnt = 0;
		for(int i=1;i<=n;i++) {
			head[i] = -1;
			dfn[i] = low[i] = 0;
			for(int j=1;j<=n;j++) {
				edge[i][j] = 0;
			}
		}
		for(int i=1;i<=m;i++){
			int u = read,v = read,w = read;
			if(edge[u][v] != 0) {
				edge[u][v] = edge[v][u] = 0x3f3f3f3f;
			}
			else{
				edge[u][v] = edge[v][u] = w;
				add(u,v);
				add(v,u);
			}
		}
		int flag = 0;
		ans.clear();
		for(int i=1;i<=n;i++){
			if(!dfn[i]){
				flag ++;
				if(flag >= 2) break;
				Tarjan(i,0);
			}
		}
		if(flag >= 2) {
			puts("0");
			continue;
		}
		if(!ans.size() || !flag) {
			puts("-1");
			continue;
		}
		int out = 0x3f3f3f3f;
		for(int i=0;i<(int)ans.size();i++) {
			out = min(out,ans[i]);
		}
		if(out == 0) out ++;
		printf("%d\n",(out == 0x3f3f3f3f?-1:out));
		/// not connected -> 0
		/// 
		
	}
	return 0;
}
/**


**/
  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2021-10-20 12:48:49  更:2021-10-20 12:51:21 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/28 0:36:18-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码