设为首页 加入收藏

TOP

HDU 4738 Caocao's Bridges(求价值最小的桥)(一)
2015-07-20 17:22:26 来源: 作者: 【 】 浏览:11
Tags:HDU 4738 Caocao' Bridges 价值 最小
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 )

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 and 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

Source 2013 ACM/ICPC Asia Regional Hangzhou Online 求价值最小的桥: 注意重边。如果不联通输出0,如果最小桥为0输出1,如果无桥输出-1.
#include
  
   
#include
   
     #include
    
      #include
     
       #include
      
        #include
       
         #include
        
          #include
         
           #include
           #include
           
             #include
            
              using namespace std; #define REPF( i , a , b ) for ( int i = a ; i <= b ; ++ i ) #define REP( i , n ) for ( int i = 0 ; i < n ; ++ i ) #define CLEAR( a , x ) memset ( a , x , sizeof a ) typedef long long LL; typedef pair
             
              pil; const int maxn=1000+10; const int maxm=maxn*maxn; struct node{ int to,next; int val; bool col;//为桥 }e[maxm]; int head[maxn],cnt,cntE; int DFN[maxn],low[maxn]; int s[maxn],instack[maxn]; int idex,top,bridge; int belong[maxn],f[maxn]; int col[maxn],add[maxn]; int n,m; void init() { cnt=top=idex=bridge=cntE=0; CLEAR(head,-1); CLEAR(DFN,0); CLEAR(low,0); CLEAR(instack,0); CLEAR(belong,0); CLEAR(f,-1); } void addedge(int u,int v,int w) { e[cntE].to=v;e[cntE].next=head[u]; e[cntE].val=w; e[cntE].col=false;head[u]=cntE++; } void Tarjan(int u,int pre) { low[u]=DFN[u]=++idex; s[top++]=u; instack[u]=1; int son=0; int pre_num=0; for(int i=head[u];i!=-1;i=e[i].next) { int v=e[i].to; if(v==pre&&!pre_num) { pre_num++; continue; } if(!DFN[v]) { son++; Tarjan(v,u); if(low[u]>low[v]) low[u]=low[v]; if(low[v]>DFN[u])//桥 { bridge++; e[i].col=true; e[i^1].col=true; } if(u!=pre&&low[v]>=DFN[u])//割点判断1 { col[u]=1; add[u]++; } } else if(low[u]>DFN[v]) low[u]=DFN[v]; } if(u==pre&&son>1) col[u]=1;//割点判断2 if(u==pre) add[u]=son-1; instack[u]=0; top--; } void work() { REPF(i,1,n) if(!DFN[i]) Tarjan(i,i); int minn=0x3f3f3f3f; REPF(u,1,n) { for(int i=head[u];i!=-1;i=e[i].next) if(e[i].col&&minn>e[i].val) minn=e[i].val; } if(minn==0) puts("1"); else if(minn==0x3f3f3f3f) puts("-1"); else printf("%d\n",minn); } int find(int x) { if(f[x]==-1) return x; else return f[x]=find(f[x]); } void Union(int x,int y) { x=find(x); y=find(y); if(x!=y) f[x]=y; } int main() { int u,v,w; while(~scanf("%d%d",&
首页 上一页 1 2 下一页 尾页 1/2/2
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇SGU 275 To xor or not to xor (.. 下一篇NYIST 116 士兵杀敌(二)

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·怎样用 Python 写一 (2025-12-27 02:49:19)
·如何学习python数据 (2025-12-27 02:49:16)
·想要自学数据分析, (2025-12-27 02:49:14)
·Java 集合框架 - 菜 (2025-12-27 02:19:36)
·Java集合框架最全详 (2025-12-27 02:19:33)