This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include "cyberland.h"
using namespace std;
typedef long long ll;
double solve(int N, int M, int K, int H, vector<int> x, vector<int>
y, vector<int> c, vector<int> arr) {
vector<vector<pair<int,int>>> g(N);
for(int i = 0; i < M; i++) {
g[x[i]].push_back({y[i], c[i]});
g[y[i]].push_back({x[i], c[i]});
}
priority_queue<pair<ll,ll>> pq;
vector<double> d(N, 1e18), dd(N, 1e18);
{
dd[0] = 0;
pq.push({0, 0});
while(!pq.empty()) {
auto [x, v] = pq.top(); pq.pop();
x = -x;
if(dd[v] < x) continue;
for(auto [u, w] : g[v]) {
if(dd[u] > x + w && u != H) {
dd[u] = x + w;
pq.push({-dd[u], u});
}
}
}
}
arr[0] = 0;
for(int i = 0; i < N; i++) if(!arr[i] && dd[i] == 1e18) arr[i] = 1;
{
for(int i = 0; i < N; i++) {
if(!arr[i] && dd[i] != 1e18) {
d[i] = 0;
pq.push({0, i});
}
}
while(!pq.empty()) {
auto [x, v] = pq.top(); pq.pop();
x = -x;
if(d[v] < x) continue;
for(auto [u, w] : g[v]) {
if(d[u] > x + w && u != H) {
d[u] = x + w;
pq.push({-d[u], u});
}
}
}
}
double res = 1e18;
for(auto [u, w] : g[H]) {
res = min(res, d[u] + w);
}
for(int k = 1; k <= K; k++) {
vector<double> nd(N, 1e18);
for(int i = 0; i < N; i++) {
nd[i] = d[i];
if(arr[i] == 2 && nd[i] != 1e18) nd[i] /= 2;
if(nd[i] != 1e18) pq.push({-nd[i], i});
}
while(!pq.empty()) {
auto [x, v] = pq.top(); pq.pop();
x = -x;
if(nd[v] < x) continue;
for(auto [u, w] : g[v]) {
if(nd[u] > x + w && u != H) {
nd[u] = x + w;
pq.push({-nd[u], u});
}
}
}
swap(nd, d);
for(auto [u, w] : g[H]) {
res = min(res, d[u] + w);
}
}
if(res == 1e18) res = -1;
return res;
}
// int main() {
// cin.tie(0); ios_base::sync_with_stdio(0);
// cout << fixed << setprecision(1) << solve(4, 4, 30, 3, {0, 0, 1, 2}, {1, 2, 3, 3}, {5, 4, 2, 4}, {1, 0, 2, 1}) << '\n';
// cout << fixed << setprecision(1) << solve(3, 2, 30, 2, {1, 2}, {2, 0}, {12, 4}, {1, 2, 1}) << '\n';
// }
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |