Submission #984855

# Submission time Handle Problem Language Result Execution time Memory
984855 2024-05-17T07:24:20 Z IUA_Hasin Cyberland (APIO23_cyberland) C++17
15 / 100
43 ms 24056 KB
#include "cyberland.h"
#include <bits/stdc++.h>
 
#define endl                                "\n"
#define yeap                                cout<<"YES"<<endl
#define nope                                cout<<"NO"<<endl
#define ll                                  long long
#define ld                                  long double
 
using namespace std; 


const ll M = 3e5+5;
const ll INF = 5e15+69;

vector<ll> ind0;
vector<pair<ll, ll>> extra[M];
vector<pair<ll, ll>> graph[M];
vector<ll> dist(M, INF);
ll vis[M];

void dijkstra(ll source){
    set<pair<ll, ll>> s;
    s.insert({0, source});
    dist[source] = 0;

    while(s.size()>0){
        auto node = *s.begin();
        ll v = node.second;
        ll v_dist = node.first;
        s.erase(s.begin());
        if(vis[v]==0){
            for(auto child : graph[v]){
                ll v2 = child.first;
                ll wt = child.second;
                if((dist[v]+wt)<(dist[v2])){
                    dist[v2] = dist[v]+wt;
                    s.insert({dist[v2], v2});
                }
            }
            vis[v] = 1;
        }
    }
    
}

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) {
    for(int i=0; i<=N; i++){
        extra[i].clear();
        graph[i].clear();
        dist[i] = INF;
        vis[i] = 0;
    }
    ind0.clear();

    for(int i=0; i<x.size(); i++){
        ll a = x[i];
        ll b = y[i];
        ll wt = c[i];
        if(a!=H && b!=H){
            graph[a].push_back({b, wt});
            graph[b].push_back({a, wt});
        } else {
            extra[a].push_back({b, wt});
            extra[b].push_back({a, wt});
        }
    }

    //
    // for(int i=0; i<N; i++){
    //     for(int j=0; j<graph[i].size(); j++){
    //         cout << graph[i][j].first << " " << graph[i][j].second << endl;
    //     }
    //     cout<<endl;
    //}
    //okay


    //
    // for(int i=0; i<N; i++){
    //     for(int j=0; j<extra[i].size(); j++){
    //         cout << extra[i][j].first << " " << i<< endl;
    //     }
    //     cout<<endl;
    // }
    //okay

    

    for(int i=0; i<arr.size(); i++){
        if(arr[i]==0){
            ind0.push_back(i);
        }
    }

    //
    // for(int i=0; i<ind0.size(); i++){
    //     cout << ind0[i] << " ";
    // }
    // cout<<endl;
    //okay

    dijkstra(0);
    vector<ll> possibleind0;
    for(int i=0; i<ind0.size(); i++){
        ll a = ind0[i];
        if(dist[a]!=INF){
            possibleind0.push_back(a);
        }
    }

    //
    // for(int i=0; i<N; i++){
    //     cout << dist[i] << " ";
    // }
    // cout<<endl;
    //okay

    //
    // for(int i=0; i<possibleind0.size(); i++){
    //     cout << possibleind0[i] << " ";
    // }
    // cout<<endl;
    //okay

    for(int i=0; i<=N; i++){
        for(int j=0; j<extra[i].size(); j++){
            graph[i].push_back(extra[i][j]);
        }
    }

    //
    // for(int i=0; i<N; i++){
    //     for(int j=0; j<graph[i].size(); j++){
    //         cout << graph[i][j].first << " " << graph[i][j].second << endl;
    //     }
    //     cout<<endl;
    // }
    //okay



    for(int i=0; i<=N; i++){
        //graph[i].clear();
        dist[i] = INF;
        vis[i] = 0;
    }

    dijkstra(0);


    //
    // for(int i=0; i<N; i++){
    //     cout << dist[i] << " ";
    // }
    // cout<<endl;
    //

    

    ll ans = dist[H];
    if(dist[H]==INF){
        return -1;
    } else {
        for(int i=0; i<=N; i++){
            //graph[i].clear();
            dist[i] = INF;
            vis[i] = 0;
        }

        dijkstra(H);
        //ans = INF;
        for(int i=0; i<possibleind0.size(); i++){
            ll a = ind0[i];
            ll temp = dist[a];
            ans = min(temp, ans);
        }
        return ans;
    }

}   

Compilation message

cyberland.cpp: In function 'void dijkstra(long long int)':
cyberland.cpp:30:12: warning: unused variable 'v_dist' [-Wunused-variable]
   30 |         ll v_dist = node.first;
      |            ^~~~~~
cyberland.cpp: In function 'double solve(int, int, int, int, std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
cyberland.cpp:56:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   56 |     for(int i=0; i<x.size(); i++){
      |                  ~^~~~~~~~~
cyberland.cpp:90:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   90 |     for(int i=0; i<arr.size(); i++){
      |                  ~^~~~~~~~~~~
cyberland.cpp:105:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  105 |     for(int i=0; i<ind0.size(); i++){
      |                  ~^~~~~~~~~~~~
cyberland.cpp:127:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  127 |         for(int j=0; j<extra[i].size(); j++){
      |                      ~^~~~~~~~~~~~~~~~
cyberland.cpp:173:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  173 |         for(int i=0; i<possibleind0.size(); i++){
      |                      ~^~~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 20 ms 16984 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 33 ms 17240 KB Correct.
2 Correct 38 ms 17216 KB Correct.
3 Correct 36 ms 17212 KB Correct.
4 Correct 38 ms 17240 KB Correct.
5 Correct 37 ms 17188 KB Correct.
6 Correct 35 ms 18012 KB Correct.
7 Correct 43 ms 18008 KB Correct.
8 Correct 22 ms 18776 KB Correct.
9 Correct 36 ms 17496 KB Correct.
10 Correct 31 ms 16988 KB Correct.
# Verdict Execution time Memory Grader output
1 Incorrect 38 ms 16988 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 32 ms 24056 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 27 ms 17244 KB Correct.
2 Correct 35 ms 17244 KB Correct.
3 Correct 30 ms 17244 KB Correct.
4 Correct 32 ms 18264 KB Correct.
5 Correct 25 ms 16988 KB Correct.
# Verdict Execution time Memory Grader output
1 Incorrect 31 ms 17244 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 31 ms 17240 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 31 ms 17244 KB Wrong Answer.
2 Halted 0 ms 0 KB -