#include <iostream>
#include <vector>
#include <queue>
#include <iomanip>
using namespace std;
vector<pair<int, int>> g[100005];
double f[100005][35], d[100005][35];
int dd[100005];
double solve(int n, int m, int k, int h, vector<int> x, vector<int> y, vector<int> c, vector<int> a) {
vector<int> v;
for (int i = 0; i < n; i++) g[i].clear();
for (int i = 0; i < n; i++) {
dd[i] = 0;
for (int j = 0; j <= k; j++) {
f[i][j] = 1e18;
}
}
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]});
}
queue<int> q;
q.push(0);
dd[0] = 1;
while (!q.empty()) {
int p = q.front();
q.pop();
if (p == h) break;
if (a[p] == 0) v.push_back(p);
for (auto w : g[p]) {
if (dd[w.first] == 0) {
dd[w.first] = 1;
q.push(w.first);
}
}
}
if (dd[h] == 0) return -1;
for (int w : v) f[w][0] = 0;
f[0][0] = 0;
for (int i = 0; i <= k; i++) {
priority_queue<pair<double, int>> q;
if (i != 0) {
for (int j = 0; j < n; j++) {
for (auto w : g[j]) {
if (w.first == h) continue;
f[j][i] = min(d[w.first][i] + w.second, f[j][i]);
}
//cout << j << " " << i << " " << f[j][i] << " " << d[2][1] << '\n';
}
}
for (int j = 0; j < n; j++) {
if (j != h) {
q.push({-f[j][i], j});
}
}
while (!q.empty()) {
double x = -q.top().first;
int u = q.top().second;
q.pop();
if (f[u][i] != x || u == h) continue;
//cout << u << " " << i << " " << x << " " << f[h][i] << " 328762836" << '\n';
for (auto w : g[u]) {
if (f[w.first][i] > f[u][i] + w.second) {
f[w.first][i] = f[u][i] + w.second;
q.push({-f[w.first][i], w.first});
}
}
}
if (i == k) break;
for (int j = 0; j < n; j++) {
if (a[j] <= 1) d[j][i + 1] = f[j][i];
else if (a[j] == 2) d[j][i + 1] = f[j][i] / 2;
}
}
double res = 1e18;
for (int j = 0; j <= k; j++) {
res = min(res, f[h][j]);
}
if (res > 1e17) return -1;
return res;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
25 ms |
8528 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
158 ms |
8688 KB |
Correct. |
2 |
Correct |
199 ms |
8704 KB |
Correct. |
3 |
Correct |
177 ms |
8528 KB |
Correct. |
4 |
Correct |
184 ms |
8528 KB |
Correct. |
5 |
Correct |
184 ms |
8720 KB |
Correct. |
6 |
Correct |
211 ms |
13832 KB |
Correct. |
7 |
Correct |
288 ms |
13792 KB |
Correct. |
8 |
Correct |
151 ms |
20484 KB |
Correct. |
9 |
Correct |
108 ms |
8528 KB |
Correct. |
10 |
Correct |
105 ms |
8616 KB |
Correct. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
185 ms |
8676 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
608 ms |
43324 KB |
Correct. |
2 |
Incorrect |
225 ms |
8528 KB |
Wrong Answer. |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
82 ms |
8796 KB |
Correct. |
2 |
Correct |
88 ms |
8776 KB |
Correct. |
3 |
Correct |
108 ms |
8748 KB |
Correct. |
4 |
Correct |
150 ms |
13936 KB |
Correct. |
5 |
Correct |
60 ms |
8528 KB |
Correct. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
104 ms |
8784 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
124 ms |
8528 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
3030 ms |
14704 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |