#include "cyberland.h"
#include<bits/stdc++.h>
using namespace std;
using db=long double;
using pii=pair<int,int>;
using ll=long long;
#define eb emplace_back
#define f first
#define s second
const db eps=1e-8;
using A=pair<int,db>;
using B=pair<A,int>;
struct cmp{
bool operator()(const B &l,const B &r)const{
if(l.f.f!=r.f.f) return l.f.f>r.f.f;
return l.f.s-r.f.s > eps;
}
};
vector<pii> adj[100005];
A d[100005];
priority_queue<B,vector<B>,cmp> pq;
queue<int> q;
bitset<100005> vis;
double solve(int N, int M, int K, int H, std::vector<int> U, std::vector<int> V, std::vector<int> W, std::vector<int> arr) {
for(int i=0;i<N;++i) adj[i].clear();
for(int i=0;i<M;++i) adj[U[i]].eb(V[i],W[i]), adj[V[i]].eb(U[i],W[i]);
q.emplace(0);
vis.reset();
vis[0]=1;
while(!q.empty()){
int u=q.front(); q.pop();
if(u==H) continue;
for(auto &[v,w]:adj[u]){
if(!vis[v]) vis[v]=1, q.emplace(v);
}
}
if(!vis[H]) return -1;
function<void(db)> dijk=[&](db lim){
while(!pq.empty()) pq.pop();
pq.emplace(A(0,0),0);
d[0]={0,0};
for(int i=1;i<N;++i){
if(vis[i]&&arr[i]==0) pq.emplace(A(0,0),i), d[i]={0,0};
else d[i]={1e9,0};
}
while(!pq.empty()){
auto [w,u]=pq.top(); pq.pop();
if(u==H) continue;
for(auto &[v,vw]:adj[u]){
A w2={w.f,w.s+vw};
if(arr[v]==2 && w2.s-lim>eps) ++w2.f, w2.s/=2;
if(d[v].f>w2.f || d[v].f==w2.f&&d[v].s-w2.s>eps){
d[v]=w2;
pq.emplace(w2,v);
}
}
}
};
db l=0,r=1e14;
while(r-l>eps){
db mid=(l+r)/2;
dijk(mid);
if(d[H].f>K) l=mid;
else r=mid;
}
dijk(l);
return d[H].s;
}
Compilation message
cyberland.cpp: In lambda function:
cyberland.cpp:57:47: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
57 | if(d[v].f>w2.f || d[v].f==w2.f&&d[v].s-w2.s>eps){
| ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
54 ms |
4120 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
349 ms |
3904 KB |
Correct. |
2 |
Correct |
424 ms |
4180 KB |
Correct. |
3 |
Correct |
404 ms |
3892 KB |
Correct. |
4 |
Correct |
454 ms |
3924 KB |
Correct. |
5 |
Correct |
417 ms |
4108 KB |
Correct. |
6 |
Correct |
581 ms |
6740 KB |
Correct. |
7 |
Correct |
763 ms |
6740 KB |
Correct. |
8 |
Correct |
333 ms |
7512 KB |
Correct. |
9 |
Correct |
238 ms |
3932 KB |
Correct. |
10 |
Correct |
236 ms |
3676 KB |
Correct. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
538 ms |
4088 KB |
Correct. |
2 |
Correct |
536 ms |
3912 KB |
Correct. |
3 |
Correct |
473 ms |
3940 KB |
Correct. |
4 |
Correct |
291 ms |
3924 KB |
Correct. |
5 |
Correct |
285 ms |
3776 KB |
Correct. |
6 |
Correct |
139 ms |
6684 KB |
Correct. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
291 ms |
10208 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
197 ms |
3924 KB |
Correct. |
2 |
Correct |
228 ms |
3924 KB |
Correct. |
3 |
Correct |
244 ms |
3920 KB |
Correct. |
4 |
Correct |
428 ms |
6928 KB |
Correct. |
5 |
Correct |
129 ms |
3676 KB |
Correct. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
255 ms |
3924 KB |
Correct. |
2 |
Correct |
190 ms |
3924 KB |
Correct. |
3 |
Correct |
30 ms |
8784 KB |
Correct. |
4 |
Correct |
231 ms |
6720 KB |
Correct. |
5 |
Correct |
150 ms |
3676 KB |
Correct. |
6 |
Correct |
229 ms |
3880 KB |
Correct. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
262 ms |
3912 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
267 ms |
4164 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |