#include <iostream>
#include <vector>
#include <queue>
#include <iomanip>
using namespace std;
vector<pair<int, int>> g[100005];
double f[100005][35], d[100005][35];
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, vv;
for (int i = 0; i < n; i++) g[i].clear();
for (int i = 0; i < n; i++) {
if (a[i] == 0) v.push_back(i);
if (a[i] == 2) vv.push_back(i);
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]});
}
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]) {
f[j][i] = min(d[w.first][i] + w.second, f[j][i]);
}
//cout << j << " " << i << " " << f[j][i] << '\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[0][0] << " 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 |
39 ms |
6192 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
152 ms |
8520 KB |
Correct. |
2 |
Correct |
186 ms |
8464 KB |
Correct. |
3 |
Correct |
181 ms |
8520 KB |
Correct. |
4 |
Correct |
210 ms |
8464 KB |
Correct. |
5 |
Correct |
185 ms |
8428 KB |
Correct. |
6 |
Correct |
221 ms |
13564 KB |
Correct. |
7 |
Correct |
290 ms |
13560 KB |
Correct. |
8 |
Correct |
142 ms |
17764 KB |
Correct. |
9 |
Correct |
103 ms |
6192 KB |
Correct. |
10 |
Correct |
108 ms |
6144 KB |
Correct. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
186 ms |
8520 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
516 ms |
42600 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
132 ms |
8476 KB |
Correct. |
2 |
Correct |
142 ms |
8504 KB |
Correct. |
3 |
Correct |
167 ms |
8528 KB |
Correct. |
4 |
Correct |
197 ms |
13500 KB |
Correct. |
5 |
Correct |
90 ms |
5968 KB |
Correct. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
182 ms |
8508 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
166 ms |
8456 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
3056 ms |
12816 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |