[HDU 4738] Caocao‘s Bridges | Tarjan 求割边

简介: Problem DescriptionCaocao 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,

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 < = 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  )


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;
}
/**
**/




目录
相关文章
HDU-1874,畅通工程续(Floyd最短路)
HDU-1874,畅通工程续(Floyd最短路)
|
机器学习/深度学习
|
人工智能
|
算法 计算机视觉 存储
【HDU 2586 How far away?】LCA问题 Tarjan算法
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2586 题意:给出一棵n个节点的无根树,每条边有各自的权值。给出m个查询,对于每条查询返回节点u到v的最短路径的权值和,按查询顺序输出结果。
1037 0
【HDU 4771 Stealing Harry Potter&#39;s Precious】BFS+状压
2013杭州区域赛现场赛二水。。。 类似“胜利大逃亡”的搜索问题,有若干个宝藏分布在不同位置,问从起点遍历过所有k个宝藏的最短时间。 思路就是,从起点出发,搜索到最近的一个宝藏,然后以这个位置为起点,搜索下一个最近的宝藏,直至找到全部k个宝藏。
1016 0