Problem E. Opening Portals
首先根據傳送門的性質,如果所有點都是傳送門的話那麼結果就是該圖的最小生成樹。
對於只有其中 k 個結點是傳送門的圖,只要在原算法的基礎上稍作修改即可。
具體,對每個點求出 P[i] 和 D[i] 。(表示距離這個點最近的傳送門和其距離。。。
之後對每條邊,再根據 D[x] + D[y] + w 作為關鍵字跑最小生成樹。。
以上分別用一次多源 spfa(),和稍作修改的 Kruskal() 即可。
Pavel plays a famous computer game. A player is responsible for a whole country and he can travel there freely, complete quests and earn experience.
This country has n cities connected by m bidirectional roads of different lengths so that it is possible to get from any city to any other one. There are portals in k of these cities. At the beginning of the game all portals are closed. When a player visits a portal city, the portal opens. Strange as it is, one can teleport from an open portal to an open one. The teleportation takes no time and that enables the player to travel quickly between rather remote regions of the country.
At the beginning of the game Pavel is in city number 1. He wants to open all portals as quickly as possible. How much time will he need for that?
InputThe first line contains two space-separated integers n and m (1?≤?n?≤?105, 0?≤?m?≤?105) that show how many cities and roads are in the game.
Each of the next m lines contains the description of a road as three space-separated integers xi, yi, wi (1?≤?xi,?yi?≤?n, xi?≠?yi, 1?≤?wi?≤?109) — the numbers of the cities connected by the i-th road and the time needed to go from one city to the other one by this road. Any two cities are connected by no more than one road. It is guaranteed that we can get from any city to any other one, moving along the roads of the country.
The next line contains integer k (1?≤?k?≤?n) — the number of portals.
The next line contains k space-separated integers p1, p2, ..., pk — numbers of the cities with installed portals. Each city has no more than one portal.
OutputPrint a single number — the minimum time a player needs to open all portals.
Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64dspecifier.
Sample test(s) input3 3 1 2 1 1 3 1 2 3 1 3 1 2 3output
2input
4 3 1 2 1 2 3 5 2 4 10 3 2 3 4output
16input
4 3 1 2 1000000000 2 3 1000000000 3 4 1000000000 4 1 2 3 4output
3000000000Note
In the second sample the player has to come to city 2, open a portal there, then go to city 3, open a portal there, teleport back to city 2and finally finish the journey in city 4.
#include#include #include #include #include using namespace std; const int maxn=100100; typedef long long int LL; int n,m,c; struct Edge { int from,to,next; LL weight; }edge[3*maxn]; int Adj[maxn],Size; int p[maxn],cq[maxn]; LL dist[maxn]; bool inq[maxn]; void init() { memset(Adj,-1,sizeof(Adj)); Size=0; } void Add_Edge(int u,int v,LL w) { edge[Size].from=u; edge[Size].to=v; edge[Size].next=Adj[u]; edge[Size].weight=w; Adj[u]=Size++; } bool spfa() { memset(dist,63,sizeof(dist)); memset(p,0,sizeof(p)); memset(cq,0,sizeof(cq)); memset(inq,false,sizeof(inq)); int k=c; queue q; for(int i=0;i dist[u]+edge[i].weight) { dist[v]=dist[u]+edge[i].weight; p[v]=p[u]; if(!inq[v]) { inq[v]=true; cq[v]++; if(cq[v]>=n) return false; q.push(v); } } } inq[u]=false; } return true; } struct BA { int x,y; LL w; }bian[3*maxn]; bool cmp(BA a,BA b) { return a.w =c) break; } cout<