ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

[codeforces938D]Buy a Ticket

2019-09-12 17:35:51  阅读:294  来源: 互联网

标签:city Buy concert 10 coins ui th Ticket codeforces938D


time limit per test : 2 seconds
memory limit per test : 256 megabytes

Musicians of a popular band “Flayer” have announced that they are going to “make their exit” with a world tour. Of course, they will visit Berland as well.

There are n cities in Berland. People can travel between cities using two-directional train routes; there are exactly m routes, i-th route can be used to go from city viv_ivi​ to city uiu_iui​ (and from uiu_iui​ to viv_ivi​), and it costs wiw_iwi​ coins to use this route.

Each city will be visited by “Flayer”, and the cost of the concert ticket in i-th city is ai coins.

You have friends in every city of Berland, and they, knowing about your programming skills, asked you to calculate min2d(i,j)+aj\min 2d(i,j)+a_jmin2d(i,j)+aj​ the minimum possible number of coins they have to pay to visit the concert. For every city iii you have to compute the minimum number of coins a person from city i has to spend to travel to some city j (or possibly stay in city i), attend a concert there, and return to city i(i (i(if jjj≠i)i)i).

Formally, for every you have to calculate , where d(i,j)d(i, j)d(i, j) is the minimum number of coins you have to spend to travel from city iii to city jjj. If there is no way to reach city jjj from city iii, then we consider d(i,j)d(i, j)d(i, j) to be infinitely large.
Input

The first line contains two integers nnn and m(2n2105,1m2105)m (2 ≤ n ≤ 2·10^5, 1 ≤ m ≤ 2·10^5)m(2 ≤ n ≤ 2⋅105,1 ≤ m ≤ 2⋅105).

Then m lines follow, i-th contains three integers vi,uivi, uivi,ui and wi(1vi,uin,viwi (1 ≤ v_i, u_i ≤ n, v_i wi(1 ≤ vi​, ui​ ≤ n, vi​ ≠ui,1wi1012)u_i, 1 ≤ w_i ≤ 10^{12})ui​,1 ≤ wi​ ≤ 1012) denoting i-th train route. There are no multiple train routes connecting the same pair of cities, that is, for each (v, u) neither extra (v,u)(v, u)(v, u) nor (u,v)(u, v)(u, v) present in input.

The next line contains n integers a1,a2,...ak(1ai1012)a_1, a_2, ... a_k (1 ≤ a_i ≤ 10^{12})a1​, a2​, ...ak​(1 ≤ ai​ ≤ 1012) — price to attend the concert in i-th city.
Output

Print n integers. i-th of them must be equal to the minimum number of coins a person from city i has to spend to travel to some city j (or possibly stay in city i), attend a concert there, and return to city i (if j ≠ i).
Examples
Input

4 2
1 2 4
2 3 7
6 20 1 25

Output

6 14 1 25 

Input

3 3
1 2 1
2 3 1
1 3 1
30 10 20

Output

12 10 12 

题意:
给一张无向图
和每个点的点权aia_iai​
对于每个点iii求出min2d(i,j)+aj(j!=i)\min 2d(i,j)+a_j(j != i)min2d(i,j)+aj​(j!=i)

题解:
先将所有点边的权值*2
将所有初始点的答案设为a[i]a[i]a[i]加入优先队列跑dijkstra即可。

#include<bits/stdc++.h>
#define ll long long
#define pa pair<ll,ll>
using namespace std;
const ll INF=1e18;
bool vis[200004];
ll a[200004];
vector<pa>G[200004];
int n,m;
priority_queue<pa,vector<pa>,greater<pa> >q;
int main(){
    scanf("%d%d",&n,&m);
    for(int i=1;i<=m;i++){
        int u,v;ll w;
        scanf("%d%d%lld",&u,&v,&w);
        w<<=1;
        G[u].push_back({v,w});
        G[v].push_back({u,w});
    }
    for(int i=1;i<=n;i++)scanf("%lld",&a[i]);
    for(int i=1;i<=n;i++){
        q.push({a[i],i});
    }
    while(!q.empty()){
        ll x=q.top().second,pre=q.top().first;
        q.pop();
        if(a[x]!=pre)continue;
        for(pa eg:G[x]){
            int to=eg.first;ll w=eg.second;
            if(a[to]>pre+w){
                a[to]=pre+w;
                q.push({a[to],to});
            }
        }
    }
    for(int i=1;i<=n;i++)printf("%lld ",a[i]);
    puts("");
    return 0;
}

标签:city,Buy,concert,10,coins,ui,th,Ticket,codeforces938D
来源: https://blog.csdn.net/dxyinme/article/details/100777001

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有