题解 | tree-2019牛客暑期多校训练营第四场G题

题目来源于牛客竞赛:https://ac.nowcoder.com/acm/contest/discuss
题目描述:
在这里插入图片描述
输入描述:
题解 | tree-2019牛客暑期多校训练营第四场G题_第1张图片
输出描述:
在这里插入图片描述
示例1:
题解 | tree-2019牛客暑期多校训练营第四场G题_第2张图片
题解:
题解 | tree-2019牛客暑期多校训练营第四场G题_第3张图片
代码:
#include

using namespace std;

typedef unsigned int u32;
typedef pair pii;
template  void chmin(T &x,const T &y)
{
	if(x>y)x=y;
}
#define rep(i,l,r) for(int i=l;i<=r;++i)
#define per(i,r,l) for(int i=r;i>=l;--i)
const int N=1000+5;
vectorlk[N];
int n,dp[N],dp0[N];

void upd()
{
	priority_queueheap;
	rep(i,1,n)heap.push({-dp[i],i});
	while(!heap.empty())
	{
		pii p=heap.top();
		heap.pop();
		int x=p.second;
		if(-p.first!=dp[x])continue;
		for(auto e:lk[x])
		{
			int y=e.first;
			if(dp[y]>dp[x]+e.second)
				heap.push({-(dp[y]=dp[x]+e.second),y});
		}
	}
}

int main()
{
	//freopen("1.in","r",stdin);//freopen("tmp","w",stdout);
	int m,S,T,k;
	cin>>n>>m>>S>>T>>k;
	rep(i,1,m)
	{
		int x,y,l;
		scanf("%d%d%d",&x,&y,&l);
		lk[x].push_back({y,l});
		lk[y].push_back({x,l});
	}
	rep(i,1,n)dp[i]=1e9;
	dp[S]=0;
	upd();
	rep(tmp,1,k)
	{
		rep(i,1,n)dp0[i]=dp[i];
		rep(x,1,n)
		for(auto e:lk[x])chmin(dp[e.first],dp0[x]);
		upd();
	}
	cout<

更多问题,更详细题解可关注牛客竞赛区,一个刷题、比赛、分享的社区。
传送门:https://ac.nowcoder.com/acm/contest/discuss

你可能感兴趣的:(题解,19牛客暑期多校训练营第四场)