Submission #768317

# Submission time Handle Problem Language Result Execution time Memory
768317 2023-06-27T22:37:40 Z HD1 Cyberland (APIO23_cyberland) C++17
0 / 100
47 ms 14080 KB
//we are all lost trying to be someone.
#include <bits/stdc++.h>
#include "cyberland.h"
#define fastio ios_base::sync_with_stdio(0); cin.tie(0);
#define sz(x) ll(x.size())
#define reve(x) reverse(x.begin(),x.end())
#define ff first
#define ss second
using namespace std;
typedef int ll;
typedef long double ld;
typedef pair<ll,ll> ii;
const ll MAX=1e5+10;
vector<ll> gfo[MAX];
bool vst[MAX];
double dist[MAX];
map<ii,ll>A;
void bfs(ll ini){
    queue<ll> q;
    q.push(ini);
    vst[ini]=true;
    dist[ini]=0;
    while(sz(q)){
        ll u=q.front();
        q.pop();
        for(ll v:gfo[u]){
            if(!vst[v]){
                vst[v]=true;
                dist[v]=dist[u]+A[{u,v}];
                q.push(v);
            }
        }
    }
}
double solve(ll N, ll M, ll K,ll H, vector<ll> x, vector<ll> y, vector<ll> c, vector<ll> arr){
    for(ll i=0; i<M; i++){
        gfo[x[i]].push_back(y[i]);
        gfo[y[i]].push_back(x[i]);
        A[{x[i],y[i]}]=c[i];
        A[{y[i],x[i]}]=c[i];
    }
    bfs(0);
    return dist[H];

}

# Verdict Execution time Memory Grader output
1 Incorrect 43 ms 2932 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 33 ms 7680 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 39 ms 8292 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 43 ms 14080 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 36 ms 7884 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 41 ms 8500 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 47 ms 8280 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 42 ms 8356 KB Wrong Answer.
2 Halted 0 ms 0 KB -