#include "cyberland.h"
#include <bits/stdc++.h>
using namespace std;
const int MAXI_NOEUDS = 100*1000;
const int MAXI_K = 30;
vector<int> pouvoirs;
int nbNoeuds, nbAretes, K, fin;
bool finAccess;
struct Arc{
int dest;
int poids;
};
struct Sit{
int node;
int nbDiv;
double dis;
bool operator <(const Sit &other) const{
return dis > other.dis;
}
};
vector<Arc> adj[MAXI_NOEUDS];
int zerosAccess[MAXI_NOEUDS];
int dejaVu[MAXI_NOEUDS];
void dfs(int n){
if(dejaVu[n] == 1)
return;
if(n == fin){
finAccess = true;
return;
}
if(pouvoirs[n] == 0)
zerosAccess[n] = 1;
dejaVu[n] = 1;
for(int v=0; v<adj[n].size(); v++){
dfs(adj[n][v].dest);
}
}
priority_queue<Sit> aTraiter;
int deja[MAXI_NOEUDS][MAXI_K];
double djikstra(){
aTraiter.push({fin, 0, 0});
for(int j=0; j<MAXI_K; j++){
deja[fin][j] = 1;
}
while(!aTraiter.empty()){
Sit curSit = aTraiter.top();
//cout << curSit.node << endl;
aTraiter.pop();
if(zerosAccess[curSit.node] == 1){
return curSit.dis;
}
deja[curSit.node][curSit.nbDiv] = 1;
for(int v=0; v<adj[curSit.node].size(); v++){
Arc voisin = adj[curSit.node][v];
//cout << curSit.node << " : " << voisin.dest << endl;
if(!deja[voisin.dest][curSit.nbDiv])
aTraiter.push({voisin.dest, curSit.nbDiv, curSit.dis + (double)voisin.poids/(double)pow(2, curSit.nbDiv)});
if(pouvoirs[curSit.node] == 2 && curSit.nbDiv < K){
if(!deja[voisin.dest][curSit.nbDiv+1])
aTraiter.push({voisin.dest, curSit.nbDiv+1, curSit.dis + (double)voisin.poids/(double)pow(2, curSit.nbDiv+1)});
}
}
}
return -1;
}
double solve(int N, int M, int k, int H, vector<int> u, vector<int> v, vector<int> c, vector<int> arr) {
pouvoirs.clear();
finAccess = false;
while(!aTraiter.empty()){
aTraiter.pop();
}
for(int i=0; i<MAXI_NOEUDS; i++){
adj[i].clear();
zerosAccess[i] = 0;
dejaVu[i] = 0;
for(int j=0; j<MAXI_K; j++){
deja[i][j] = 0;
}
}
zerosAccess[0] = 1;
pouvoirs = arr;
fin = H;
nbNoeuds = N;
nbAretes = M;
K = min(k, MAXI_K);
for(int n=0; n<N; n++){
adj[u[n]].push_back({v[n], c[n]});
adj[v[n]].push_back({u[n], c[n]});
}
dfs(0);
if(!finAccess)
return -1;
else
return djikstra();
}
Compilation message
cyberland.cpp: In function 'void dfs(int)':
cyberland.cpp:40:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<Arc>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
40 | for(int v=0; v<adj[n].size(); v++){
| ~^~~~~~~~~~~~~~
cyberland.cpp: In function 'double djikstra()':
cyberland.cpp:62:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<Arc>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
62 | for(int v=0; v<adj[curSit.node].size(); v++){
| ~^~~~~~~~~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
13 ms |
30556 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
13 ms |
30808 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
14 ms |
30812 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
23 ms |
19800 KB |
Correct. |
2 |
Runtime error |
15 ms |
30812 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
14 ms |
30812 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
13 ms |
30808 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
19 ms |
30848 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
13 ms |
30808 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |