Submission #984757

# Submission time Handle Problem Language Result Execution time Memory
984757 2024-05-17T04:58:25 Z Rafiullah Cyberland (APIO23_cyberland) C++17
0 / 100
43 ms 12372 KB
#include "cyberland.h"

#include <bits/stdc++.h>
using namespace std;
double solve(int N, int M, int K, int H, std::vector<int> x, std::vector<int> y, std::vector<int> c, std::vector<int> arr) {
    map<int,vector<int>> graph;
    map<pair<int,int>,int> weight;
    for(int i = 0 ;i <x.size() ;i ++){
        int a = x[i];
        int b = y[i];
        int cc = c[i];
        weight[{min(a,b),max(a,b)}] = cc;
        graph[a].push_back(b);
        graph[b].push_back(a);
    }
    int dist[N];
    for(int i = 1 ;i <N ;i ++)dist[i] = 1e9;
    dist[0] = 0;
    priority_queue<pair<int,int>> pq;
    pq.push({0,0});
    while(pq.size()>0){
        int node = pq.top().second;
        pq.pop();
        for(int child:graph[node]){
            int w = weight[{min(child,node),max(child,node)}];
            if(w+dist[node]<dist[child]){
                dist[child] = w+dist[node];
                pq.push({-dist[child],child});
            }
        }
    }

    return dist[H];
}

Compilation message

cyberland.cpp: In function 'double solve(int, int, int, int, std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
cyberland.cpp:8:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    8 |     for(int i = 0 ;i <x.size() ;i ++){
      |                    ~~^~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 16 ms 604 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 27 ms 600 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 32 ms 604 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 43 ms 12372 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 31 ms 608 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 36 ms 600 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 36 ms 604 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 36 ms 600 KB Wrong Answer.
2 Halted 0 ms 0 KB -