zoukankan      html  css  js  c++  java
  • luogu P3110 [USACO14DEC]驮运Piggy Back |最短路

    题目描述
    Bessie and her sister Elsie graze in different fields during the day, and in the evening they both want to walk back to the barn to rest. Being clever bovines, they come up with a plan to minimize the total amount of energy they both spend while walking.

    Bessie spends B units of energy when walking from a field to an adjacent field, and Elsie spends E units of energy when she walks to an adjacent field. However, if Bessie and Elsie are together in the same field, Bessie can carry Elsie on her shoulders and both can move to an adjacent field while spending only P units of energy (where P might be considerably less than B+E, the amount Bessie and Elsie would have spent individually walking to the adjacent field). If P is very small, the most energy-efficient solution may involve Bessie and Elsie traveling to a common meeting field, then traveling together piggyback for the rest of the journey to the barn. Of course, if P is large, it may still make the most sense for Bessie and Elsie to travel

    separately. On a side note, Bessie and Elsie are both unhappy with the term "piggyback", as they don't see why the pigs on the farm should deserve all the credit for this remarkable form of

    transportation.

    Given B, E, and P, as well as the layout of the farm, please compute the minimum amount of energy required for Bessie and Elsie to reach the barn.

    Bessie 和 Elsie在不同的区域放牧,他们希望花费最小的能量返回谷仓。从一个区域走到一个相连区域,Bessie要花费B单位的能量,Elsie要花费E单位的能量。

    如果某次他们两走到同一个区域,Bessie 可以背着 Elsie走路,花费P单位的能量走到另外一个相连的区域。当然,存在P>B+E的情况。

    相遇后,他们可以一直背着走,也可以独立分开。

    输入格式
    INPUT: (file piggyback.in)

    The first line of input contains the positive integers B, E, P, N, and M. All of these are at most 40,000. B, E, and P are described above. N is the number of fields in the farm (numbered 1..N, where N >= 3), and M is the number of connections between fields. Bessie and Elsie start in fields 1 and 2, respectively. The barn resides in field N.

    The next M lines in the input each describe a connection between a pair of different fields, specified by the integer indices of the two fields. Connections are bi-directional. It is always possible to travel from field 1 to field N, and field 2 to field N, along a series of such connections.

    输出格式
    OUTPUT: (file piggyback.out)

    A single integer specifying the minimum amount of energy Bessie and

    Elsie collectively need to spend to reach the barn. In the example

    shown here, Bessie travels from 1 to 4 and Elsie travels from 2 to 3

    to 4. Then, they travel together from 4 to 7 to 8.


    #include<queue>
    #include<cstdio>
    #include<cstring>
    #include<iostream>
    #include<algorithm>
    using namespace std;
    const int N=50000,M=4*N;
    int next[M],head[N],go[M],tot;
    inline void add(int u,int v){
    	next[++tot]=head[u];head[u]=tot;go[tot]=v;
    	next[++tot]=head[v];head[v]=tot;go[tot]=u;
    }
    int dis1[N],dis2[N],dis3[N];
    struct node{
    	int u,d;
    	bool operator<(const node& rhs)const{
    		return d>rhs.d;
    	}
    };
    priority_queue<node>q;
    inline void dj1(int s){
    	memset(dis1,0x3f,sizeof(dis1));
    	q.push((node){s,0});
    	dis1[s]=0;
    	while(q.size()){
    		int u=q.top().u,d=q.top().d;
    		q.pop();
    		if(d!=dis1[u])continue;
    		for(int i=head[u];i;i=next[i]){
    			int v=go[i];
    			if(dis1[v]>dis1[u]+1){
    				dis1[v]=dis1[u]+1;
    				q.push((node){v,dis1[v]});
    			}
    		}
    	}
    }
    inline void dj2(int s){
    	memset(dis2,0x3f,sizeof(dis2));
    	q.push((node){s,0});
    	dis2[s]=0;
    	while(q.size()){
    		int u=q.top().u,d=q.top().d;
    		q.pop();
    		if(d!=dis2[u])continue;
    		for(int i=head[u];i;i=next[i]){
    			int v=go[i];
    			if(dis2[v]>dis2[u]+1){
    				dis2[v]=dis2[u]+1;
    				q.push((node){v,dis2[v]});
    			}
    		}
    	}
    }
    inline void dj3(int s){
    	memset(dis3,0x3f,sizeof(dis3));
    	q.push((node){s,0});
    	dis3[s]=0;
    	while(q.size()){
    		int u=q.top().u,d=q.top().d;
    		q.pop();
    		if(d!=dis3[u])continue;
    		for(int i=head[u];i;i=next[i]){
    			int v=go[i];
    			if(dis3[v]>dis3[u]+1){
    				dis3[v]=dis3[u]+1;
    				q.push((node){v,dis3[v]});
    			}
    		}
    	}
    }
    int main(){
    	int b,e,p,n,m;
    	cin>>b>>e>>p>>n>>m;
    	for(int i=1,u,v;i<=m;i++){
    		scanf("%d%d",&u,&v);
    		add(u,v);
    	}
    	dj1(1),dj2(2),dj3(n);
    	if(p>=b+e){
    		cout<<dis1[n]*b+dis2[n]*e<<endl;
    		return 0;
    	}
    	int ans=1e9;
    	for(int i=1;i<=n;i++)
    	ans=min(ans,dis1[i]*b+dis2[i]*e+dis3[i]*p);
    	cout<<ans<<endl;
    }
    
  • 相关阅读:
    获取系统环境变量
    改变系统提示信息
    获取任务栏大小
    获取系统启动后经过的时间
    获取系统版本号
    z-tree的使用
    vue学习-day05 -- 案例:名字合并(监听data数据的改变)
    vue学习-day04(路由)
    eclipse在线安装ermaster插件
    vue学习-day03(动画,组件)
  • 原文地址:https://www.cnblogs.com/naruto-mzx/p/11853749.html
Copyright © 2011-2022 走看看