#include "cyberland.h"
#include<bits/stdc++.h>
using namespace std;
using db=double;
using pii=pair<int,int>;
using ll=long long;
#define eb emplace_back
#define f first
#define s second
const db eps=1e-14;
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 |
40 ms |
4444 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
243 ms |
4924 KB |
Correct. |
2 |
Correct |
297 ms |
4984 KB |
Correct. |
3 |
Correct |
284 ms |
5072 KB |
Correct. |
4 |
Correct |
315 ms |
5124 KB |
Correct. |
5 |
Correct |
297 ms |
5132 KB |
Correct. |
6 |
Correct |
476 ms |
5456 KB |
Correct. |
7 |
Correct |
640 ms |
5992 KB |
Correct. |
8 |
Correct |
277 ms |
6292 KB |
Correct. |
9 |
Correct |
145 ms |
4692 KB |
Correct. |
10 |
Correct |
149 ms |
4684 KB |
Correct. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
397 ms |
5460 KB |
Correct. |
2 |
Correct |
389 ms |
4932 KB |
Correct. |
3 |
Correct |
351 ms |
4688 KB |
Correct. |
4 |
Correct |
172 ms |
4692 KB |
Correct. |
5 |
Correct |
169 ms |
4808 KB |
Correct. |
6 |
Correct |
120 ms |
5460 KB |
Correct. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
245 ms |
8540 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
142 ms |
4944 KB |
Correct. |
2 |
Correct |
159 ms |
5460 KB |
Correct. |
3 |
Correct |
176 ms |
4944 KB |
Correct. |
4 |
Correct |
348 ms |
5848 KB |
Correct. |
5 |
Correct |
74 ms |
4768 KB |
Correct. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
176 ms |
5180 KB |
Correct. |
2 |
Correct |
126 ms |
4944 KB |
Correct. |
3 |
Correct |
33 ms |
10512 KB |
Correct. |
4 |
Correct |
182 ms |
5716 KB |
Correct. |
5 |
Correct |
89 ms |
4836 KB |
Correct. |
6 |
Correct |
157 ms |
5216 KB |
Correct. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
192 ms |
5040 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
207 ms |
5120 KB |
Wrong Answer. |
2 |
Halted |
0 ms |
0 KB |
- |