#include "bits/stdc++.h"
using namespace std;
#define ff first
#define ss second
#define all(v) v.begin(), v.end()
#define ll long long
#define pb push_back
#define pii pair<int, int>
#define wr puts("----------------")
template<class T>bool umin(T& a,T b){if(a>b){a=b;return 1;}return 0;}
template<class T>bool umax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
const int N = 1e5+5;
const ll INF = 1e15; // 1e5*1e9=1e14
vector<pii> adj[N];
double answer = INF;
void dfs(int x, int pr, double sm, int h, int k, vector<int> &arr){
if(x == h){
umin(answer, sm);
return;
}
for(auto [i, val] : adj[x])
if(i != pr and i){
double taze = sm+val;
if(!arr[i])
taze = 0;
else if(arr[i] == 2 and k)
taze /= 2;
dfs(i, x, taze, h, k, arr);
}
}
double solve(int n, int m, int k, int h, vector<int> u, vector<int> v, vector<int> w, vector<int> arr){
for(int i = 0; i < m; ++i){
adj[u[i]].pb({v[i], w[i]});
adj[v[i]].pb({u[i], w[i]});
}
answer = INF;
dfs(0, -1, 0, h, k, arr);
if(answer == INF)
answer = -1;
for(int i = 0; i <= n; ++i)
adj[i].clear();
return answer;
}
// int main(){
// double kk = solve(3, 3, 2, 2, {0, 1, 2}, {1, 2, 0}, {16, 5, 10}, {1, 0, 1});
// printf("%f\n", kk);
// return 0;
// }
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
10 ms |
2904 KB |
Correct. |
2 |
Correct |
10 ms |
2908 KB |
Correct. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
10 ms |
2908 KB |
Correct. |
2 |
Correct |
12 ms |
2896 KB |
Correct. |
3 |
Correct |
14 ms |
2908 KB |
Correct. |
4 |
Correct |
12 ms |
2904 KB |
Correct. |
5 |
Correct |
12 ms |
2908 KB |
Correct. |
6 |
Correct |
15 ms |
3420 KB |
Correct. |
7 |
Correct |
14 ms |
3672 KB |
Correct. |
8 |
Correct |
7 ms |
3932 KB |
Correct. |
9 |
Correct |
13 ms |
2652 KB |
Correct. |
10 |
Correct |
12 ms |
2652 KB |
Correct. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
12 ms |
2904 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
19 ms |
7516 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1154 ms |
2097152 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1092 ms |
2097152 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1101 ms |
2097152 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1099 ms |
2097152 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |