Submission #1061014

# Submission time Handle Problem Language Result Execution time Memory
1061014 2024-08-16T05:34:35 Z KasymK Cyberland (APIO23_cyberland) C++17
0 / 100
30 ms 7004 KB
#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;
vector<pii> adj[N];
int vis[N], d[N];

double solve(int n, int m, int k, int h, vector<int> u, vector<int> v, vector<int> w, vector<int> arr){
    // There are only one path in tree, so we can do simple bfs search
    for(int i = 0; i < m; ++i){
        adj[u[i]].pb({v[i], w[i]});
        adj[v[i]].pb({u[i], w[i]});
    }
    queue<int> q;
    q.push(0);
    vis[0] = 1;
    while(!q.empty()){
        int x = q.front();
        q.pop();
        for(auto [i, val] : adj[x])
            if(!vis[i]){
                vis[i] = 1;
                d[i] = d[x]+val;
                q.push(i);
            }
    }
    double answer = (double)d[h];
    return answer;
}

// int main(){
//     double kk = solve(5, 4, 10, 4, {0, 0, 1, 1}, {1, 2, 3, 4}, {6, 5, 7, 8}, {1, 1, 1, 1, 1});
//     printf("%f\n", kk);
//     return 0;
// }
# Verdict Execution time Memory Grader output
1 Incorrect 30 ms 4176 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 11 ms 4444 KB Double -1.40446e+09 violates the range [-1, 1e+18]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 13 ms 4680 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 22 ms 7004 KB Double -6.15963e+08 violates the range [-1, 1e+18]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 11 ms 4700 KB Double -1.05375e+09 violates the range [-1, 1e+18]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 13 ms 4700 KB Double -1.09937e+09 violates the range [-1, 1e+18]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 13 ms 4956 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 15 ms 5212 KB Wrong Answer.
2 Halted 0 ms 0 KB -