Submission #954053

#TimeUsernameProblemLanguageResultExecution timeMemory
954053OtalpCyberland (APIO23_cyberland)C++17
97 / 100
3032 ms58800 KiB
#include "cyberland.h"
#include <bits/stdc++.h>
using namespace std;
#define pii pair<int, int>
#define pb push_back
#define ff first
#define ss second


vector<pair<int, int>> q[200100];
double dp[200100][35];
int us[200100][35];
int pos[200100];
int H;

void dfs(int v){
    pos[v] = 1;
    if(v == H) return;
    for(int i=0; i<q[v].size(); i++){
        int to = q[v][i].ff;
        if(pos[to]) continue;
        dfs(to);
    }
}



double solve(int n, int m, int K, int h, vector<int> x, vector<int> y, vector<int> c, vector<int> arr) {
    H = h;
    for(int i=0; i<n; i++){
        q[i].clear();
        for(int j=0; j<=K; j++){
            dp[i][j] = us[i][j] = 0;
        }
        pos[i] = 0;
    }
    for(int i=0; i<m; i++){
        q[x[i]].pb({y[i], c[i]});
        q[y[i]].pb({x[i], c[i]});
    }
    dfs(0);
    if(pos[h] == 0) return -1; 
    set<pair<pair<int, double>, int>> s;
    s.insert({{0, 0}, 0});

    for(int i=0; i<n; i++){
        if(arr[i] == 0 and pos[i] == 1){
            s.insert({{0, 0}, i});
        }
    }

    while(s.size()){
        auto it = s.begin();
        if(us[it -> ss][it -> ff.ff]){
            s.erase(it);
            continue;
        }
        int v = it -> ss;
        int c = it -> ff.ff;
        us[v][c] = 1;
        dp[v][c] = it -> ff.ss;
        if(v == h) continue;
        for(int i=0; i<q[v].size(); i++){
            int to = q[v][i].ff;
            int x = q[v][i].ss;
            if(!us[to][c]){
                s.insert({{c, dp[v][c] + x}, to});
            }
            if(arr[to] == 2 and c + 1 <= K and !us[to][c+1]){
                s.insert({{c + 1, (dp[v][c] + x) / 2}, to});
            }
        }
    }
    double mn=1e18;
    for(int i=0; i<=K; i++){
        if(us[h][i]) mn = min(mn, dp[h][i]);
    }
    if(mn == 1e18) return -1;
    return mn;
}


Compilation message (stderr)

cyberland.cpp: In function 'void dfs(int)':
cyberland.cpp:19:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   19 |     for(int i=0; i<q[v].size(); i++){
      |                  ~^~~~~~~~~~~~
cyberland.cpp: In function 'double solve(int, int, int, int, std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
cyberland.cpp:63:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   63 |         for(int i=0; i<q[v].size(); i++){
      |                      ~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...