# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
244533 | arnold518 | 새로운 문제 (POI13_cen) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int MAXN = 2e5;
const ll INF = 1e15;
int N, M, K, A, B;
pii E[MAXN+10];
vector<int> adj[MAXN/2+10], adj2[MAXN/2+10];
ll dist1[MAXN+10], dist2[MAXN+10];
bool vis1[MAXN+10], vis2[MAXN+10];
struct Queue
{
int v, w, p;
};
bool f(int u, int v) { return binary_search(adj2[u].begin(), adj2[u].end(), v); }
int main()
{
int i, j;
scanf("%d%d%d%d%d", &N, &M, &K, &A, &B);
for(i=1; i<=M; i++)
{
int u, v;
scanf("%d%d", &u, &v);
adj[u].push_back(v);
adj[v].push_back(u);
adj2[u].push_back(v);
adj2[v].push_back(u);
}
for(i=1; i<=N; i++) sort(adj2[i].begin(), adj2[i].end());
for(i=1; i<=N; i++) dist1[i]=dist2[i]=INF;
queue<Queue> Q;
Q.push({K, 0, 0}); vis1[K]=1; dist1[K]=0;
while(!Q.empty())
{
Queue now=Q.front(); Q.pop();
for(auto nxt : adj[now.v])
{
if(vis1[nxt]) continue;
dist1[nxt]=now.w+1;
vis1[nxt]=true;
Q.push({nxt, now.w+1, 0});
}
}
Q.push({K, 0, -1}); vis2[K]=1; dist2[K]=0;
while(!Q.empty())
{
Queue now=Q.front(); Q.pop();
if(now.p==-1)
{
for(auto nxt : adj[now.v])
{
Q.push({nxt, now.w, now.v});
}
}
else
{
for(auto &nxt : adj[now.v])
{
if(vis2[nxt]) continue;
if(f(nxt, now.p)) continue;
Q.push({nxt, now.w+1, -1});
vis2[nxt]=true;
dist2[nxt]=now.w+1;
nxt=-1;
}
vector<int> V;
for(auto it : adj[now.v]) if(it!=-1) V.push_back(it);
adj[now.v]=it;
}
}
for(i=1; i<=N; i++)
{
if(dist1[i]%2==0) printf("%lld\n", min(dist1[i]*A, dist1[i]/2*B));
else printf("%lld\n", min({dist1[i]*A, dist1[i]/2*B+A, dist2[i]*B}));
}
}