zoukankan      html  css  js  c++  java
  • BZOJ 2100 Usaco2010 Dec Apple Delivery

    2100: [Usaco2010 Dec]Apple Delivery

    Time Limit: 10 Sec  Memory Limit: 64 MB
    Submit: 894  Solved: 348
    [Submit][Status][Discuss]

    Description

    Bessie has two crisp red apples to deliver to two of her friends in the herd. Of course, she travels the C (1 <= C <= 200,000) cowpaths which are arranged as the usual graph which connects P (1 <= P <= 100,000) pastures conveniently numbered from 1..P: no cowpath leads from a pasture to itself, cowpaths are bidirectional, each cowpath has an associated distance, and, best of all, it is always possible to get from any pasture to any other pasture. Each cowpath connects two differing pastures P1_i (1 <= P1_i <= P) and P2_i (1 <= P2_i <= P) with a distance between them of D_i. The sum of all the distances D_i does not exceed 2,000,000,000. What is the minimum total distance Bessie must travel to deliver both apples by starting at pasture PB (1 <= PB <= P) and visiting pastures PA1 (1 <= PA1 <= P) and PA2 (1 <= PA2 <= P) in any order. All three of these pastures are distinct, of course. Consider this map of bracketed pasture numbers and cowpaths with distances:  If Bessie starts at pasture [5] and delivers apples to pastures [1] and [4], her best path is: 5 -> 6-> 7 -> 4* -> 3 -> 2 -> 1* with a total distance of 12.

    一张P个点的无向图,C条正权路。
    CLJ要从Pb点(家)出发,既要去Pa1点NOI赛场拿金牌,也要去Pa2点CMO赛场拿金牌。(途中不必回家)
    可以先去NOI,也可以先去CMO。
    当然神犇CLJ肯定会使总路程最小,输出最小值。

    Input

    * Line 1: Line 1 contains five space-separated integers: C, P, PB, PA1, and PA2 * Lines 2..C+1: Line i+1 describes cowpath i by naming two pastures it connects and the distance between them: P1_i, P2_i, D_i

    Output

    * Line 1: The shortest distance Bessie must travel to deliver both apples

    Sample Input

    9 7 5 1 4
    5 1 7
    6 7 2
    4 7 2
    5 6 1
    5 2 4
    4 3 2
    1 2 3
    3 2 2
    2 6 3



    Sample Output

    12

    HINT

    求翻译.........站内PM我吧.........

    Source

    Silver

    因为图是无向图,所以做两次spfa,分别以pa1和pa2为起点即可

    #include <bits/stdc++.h>
    #define ll long long
    #define inf 1000000
    #define eps 1e-7
    using namespace std;
    inline int read(){
        int x=0;int f=1;char ch=getchar();
        while(!isdigit(ch)) {if(ch=='-') f=-1;ch=getchar();}
        while(isdigit(ch)) {x=x*10+ch-'0';ch=getchar();}
        return x*f;
    }
    const int MAXN=1e6+10;
    struct node{
        int y,next,v;
    }e[MAXN];
    int linkk[MAXN],len,n,m,dis[MAXN],vis[MAXN];
    inline void insert(int xx,int yy,int vv){
        e[++len].y=yy;e[len].next=linkk[xx];e[len].v=vv;linkk[xx]=len;
    }
    void spfa(int st){
        deque < int > q;
        memset(dis,10,sizeof(dis));
        memset(vis,0,sizeof(vis));
        q.push_back(st);dis[st]=0;vis[st]=1;
        while(!q.empty()){
            int tn=q.front();q.pop_front();vis[tn]=0;
            for(int i=linkk[tn];i;i=e[i].next){
                if(dis[e[i].y]>dis[tn]+e[i].v){
                    dis[e[i].y]=dis[tn]+e[i].v;
                    if(!vis[e[i].y]){
                        vis[e[i].y]=1;
                        if(!q.empty()&&dis[q.front()]>dis[e[i].y]) q.push_front(e[i].y);
                        else q.push_back(e[i].y);
                    }
                }
            }
        }
    }
    int main(){
        m=read();n=read();int s=read();int t1=read();int t2=read();
        for(int i=1;i<=m;i++){
            int xx=read();int yy=read();int vv=read();;
            insert(xx,yy,vv);insert(yy,xx,vv);
        }
        spfa(t1);
        int ans=dis[t2]+dis[s];
        spfa(t2);
        ans=min(ans,dis[t1]+dis[s]);
        cout<<ans<<endl;
        return 0;
    }
    

      

  • 相关阅读:
    linux中使用pthread_kill函数测试线程是否存活的例子
    jQuery的位置函数(offset(),innerWidth(),innerHeight(),outerWidth(),outerHeight(),scrollTop(),scrollLeft())小应用
    解决this.disabled=true;不能执行服务器端代码的问题(点击后按钮变不可用状态)
    sql trim()函数去掉两头空格
    五一结婚,收集祝福。附我的结婚对联,结婚放大像。
    错误提示:操作必须使用一个可更新的查询。
    C#:按精度四舍五入
    Javascript四舍五入(Math.round()与Math.pow())
    javascript与jQuery设置取得div绝对位置一个小应用(像日历控件一样,在编辑框下面显示一个层)
    jQuery取得select选中的值
  • 原文地址:https://www.cnblogs.com/something-for-nothing/p/8133779.html
Copyright © 2011-2022 走看看