UVA 11354 - Bond 最小树/LCA/瓶颈路

-----------------------

Once again, James Bond is on his way to saving the world. Bond's latest mission requires him to travel between several pairs of cities in a certain country.

 

The country has N cities (numbered by 1, 2, . . ., N), connected by M bidirectional roads. Bond is going to steal a vehicle, and drive along the roads from city s to city t. The country's police will be patrolling the roads, looking for Bond, however, not all roads get the same degree of attention from the police.

 

More formally, for each road MI6 has estimated its dangerousness, the higher it is, the more likely Bond is going to be caught while driving on this road. Dangerousness of a path from s to t is defined as the maximum dangerousness of any road on this path.

 

Now, it's your job to help Bond succeed in saving the world by finding the least dangerous paths for his mission.

 

 

Input

There will be at most 5 cases in the input file.

The first line of each case contains two integers NM (2 ≤ N≤ 50000, 1≤ M ≤ 100000) – number of cities and roads. The next M lines describe the roads. The i-th of these lines contains three integers: xiyidi (1 ≤ xiyi ≤ N, 0 ≤ di ≤ 109) - the numbers of the cities connected by the ith road and its dangerousness.

 

Description of the roads is followed by a line containing an integer Q (1 ≤ Q ≤ 50000), followed by Q lines, the i-th of which contains two integers si and ti (1 ≤ siti  ≤ Nsi != ti).

 

Consecutive input sets are separated by a blank line.

 

Output

For each case, output Q lines, the i-th of which contains the minimum dangerousness of a path between cities si and ti. Consecutive output blocks are separated by a blank line.

 

The input file will be such that there will always be at least one valid path.

 

Sample Input

Output for Sample Input

4 5

1 2 10

1 3 20

1 4 100

2 4 30

3 4 10

2

1 4

4 1

 

2 1

1 2 100

1

1 2

20

20

 

100

 

ProblemSetter: Ivan Krasilnikov 


-----------------------

最小生成树上,两点间的最长边就是瓶颈路。

用LCA快速求出树上两点的瓶颈路

-----------------------

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <queue>
using namespace std;

const int maxn=55000;
const int maxm=250000;
const int INF=0x3f3f3f3f;
typedef long long LL;

struct HeapNode{
    int d,u;
    HeapNode(){}
    HeapNode(int a,int b):d(a),u(b){}
    bool operator<(const HeapNode& rhs) const{
        return d>rhs.d;
    }
};
struct EdgeNode{
    int to;
    int w;
    int next;
};
struct Prim{
    EdgeNode edges[maxm];
    int head[maxn];
    int edge,n;
    void init(int n){
        this->n=n;
        memset(head,-1,sizeof(head));
        edge=0;
    }
    void addedge(int u,int v,int c){
        edges[edge].w=c,edges[edge].to=v,edges[edge].next=head[u],head[u]=edge++;
    }
    bool done[maxn];
    int dis[maxn];
    int pre[maxn];
    int dep[maxn];
    void prim(int s){
        priority_queue<HeapNode>que;
        for (int i=0;i<=n;i++) dis[i]=INF;
        dis[s]=0;
        memset(done,0,sizeof(done));
        memset(dep,0,sizeof(dep));
        que.push(HeapNode(0,s));
        while (!que.empty()){
            HeapNode x=que.top();
            que.pop();
            int u=x.u;
            if (done[u]) continue;
            done[u]=true;
            for (int i=head[u];i!=-1;i=edges[i].next){
                int v=edges[i].to;
                int w=edges[i].w;
                if (!done[v]&&dis[v]>w){
                    dis[v]=w;
                    pre[v]=u;
                    dep[v]=dep[u]+1;
                    que.push(HeapNode(dis[v],v));
                }
            }
        }
    }
}solver;
int n,m;
int fa[maxn],cost[maxn],L[maxn];
int anc[maxn][20];
int maxCost[maxn][20];

void preprocess(){
    for (int i=1;i<=n;i++){
        anc[i][0]=fa[i];
        maxCost[i][0]=cost[i];
        for (int j=1;(1<<j)<n;j++) anc[i][j]=-1;
    }
    for (int j=1;(1<<j)<n;j++){
        for (int i=1;i<=n;i++){
            if (anc[i][j-1]!=-1){
                int a=anc[i][j-1];
                anc[i][j]=anc[a][j-1];
                maxCost[i][j]=max(maxCost[i][j-1],maxCost[a][j-1]);
            }
        }
    }
}
int query(int p,int q){
    int log;
    if (L[p]<L[q]) swap(p,q);
    for (log=1;(1<<log)<=L[p];log++);log--;
    int ans=-INF;
    for (int i=log;i>=0;i--){
        if (L[p]-(1<<i)>=L[q]){
            ans=max(ans,maxCost[p][i]);
            p=anc[p][i];
        }
    }
    if (p==q) return ans;
    for (int i=log;i>=0;i--){
        if (anc[p][i]!=-1&&anc[p][i]!=anc[q][i]){
            ans=max(ans,maxCost[p][i]);
            p=anc[p][i];
            ans=max(ans,maxCost[q][i]);
            q=anc[q][i];
        }
    }
    ans=max(ans,cost[p]);
    ans=max(ans,cost[q]);
    return ans;
}

int main()
{
    int cas=0;
    while (~scanf("%d%d",&n,&m)){
        if (cas!=0) puts("");
        cas++;
        solver.init(n);
        for (int i=0;i<m;i++){
            int x,y,z;
            scanf("%d%d%d",&x,&y,&z);
            solver.addedge(x,y,z);
            solver.addedge(y,x,z);
        }
        solver.prim(1);
        for (int i=1;i<=n;i++){
            fa[i]=solver.pre[i];
            cost[i]=solver.dis[i];
            L[i]=solver.dep[i];
        }
        //for (int i=1;i<=n;i++) cerr<<fa[i]<<" ";cerr<<endl;
        preprocess();
        int Q;
        scanf("%d",&Q);
        while (Q--){
            int x,y;
            scanf("%d%d",&x,&y);
            printf("%d\n",query(x,y));
        }
    }
    return 0;
}


-----------------------

-----------------------

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值