#include "crocodile.h"
#include <iostream>
#include <vector>
#include <algorithm>
#include <queue>
#include <set>
#include <utility>
using namespace std;
int travel_plan(int N, int M, int R[][2], int L[], int K, int P[])
{
vector<vector<pair<int, long long> > > adjacent (N, vector<pair<int, long long> >());
for (int i = 0; i < M; i++){
int s = R[i][0];
int e = R[i][1];
long long d = L[i];
adjacent[s].push_back(make_pair(e, d));
adjacent[e].push_back(make_pair(s, d));
}
vector<long long> max_escape (N, 1000000001);
for (int i = 0; i < K; i++){
max_escape[P[i]] = 0;
}
vector<long long> current_best_escape (N, 1000000001);
vector<long long> current_second_best_escape (N, 1000000001);
priority_queue<pair<int, long long> > to_visit;
for (int i = 0; i < K; i++){
int c_vertex = P[i];
for (int j = 0; j < adjacent[c_vertex].size(); j++){
int new_vertex = adjacent[c_vertex][j].first;
long long escape_length = adjacent[c_vertex][j].second;
if (escape_length <= current_best_escape[new_vertex]){
current_second_best_escape[new_vertex] = current_best_escape[new_vertex];
current_best_escape[new_vertex] = escape_length;
to_visit.push(make_pair(-current_second_best_escape[new_vertex], new_vertex));
} else{
if (escape_length <= current_second_best_escape[new_vertex]){
current_second_best_escape[new_vertex] = escape_length;
}
to_visit.push(make_pair(-current_second_best_escape[new_vertex], new_vertex));
}
}
}
while (max_escape[0] == 1000000001){
pair<long long, int> current_vertex_pair = to_visit.top();
to_visit.pop();
int c_vertex = current_vertex_pair.second;
long long d = -current_vertex_pair.first;
//cout << c_vertex << ' ' << d << endl;
if (max_escape[c_vertex] == 1000000001){
for (int j = 0; j < adjacent[c_vertex].size(); j++){
int new_vertex = adjacent[c_vertex][j].first;
long long escape_length = adjacent[c_vertex][j].second + d;
if (escape_length <= current_best_escape[new_vertex]){
current_second_best_escape[new_vertex] = current_best_escape[new_vertex];
current_best_escape[new_vertex] = escape_length;
to_visit.push(make_pair(-current_second_best_escape[new_vertex], new_vertex));
} else{
if (escape_length <= current_second_best_escape[new_vertex]){
current_second_best_escape[new_vertex] = escape_length;
to_visit.push(make_pair(-current_second_best_escape[new_vertex], new_vertex));
}
}
}
}
max_escape[c_vertex] = d;
}
return max_escape[0];
}
Compilation message
crocodile.cpp: In function 'int travel_plan(int, int, int (*)[2], int*, int, int*)':
crocodile.cpp:42:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int j = 0; j < adjacent[c_vertex].size(); j++){
~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
crocodile.cpp:73:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int j = 0; j < adjacent[c_vertex].size(); j++){
~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
384 KB |
Output is correct |
2 |
Correct |
0 ms |
384 KB |
Output is correct |
3 |
Correct |
1 ms |
384 KB |
Output is correct |
4 |
Correct |
1 ms |
512 KB |
Output is correct |
5 |
Correct |
1 ms |
512 KB |
Output is correct |
6 |
Correct |
1 ms |
384 KB |
Output is correct |
7 |
Correct |
1 ms |
512 KB |
Output is correct |
8 |
Correct |
2 ms |
512 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
384 KB |
Output is correct |
2 |
Correct |
0 ms |
384 KB |
Output is correct |
3 |
Correct |
1 ms |
384 KB |
Output is correct |
4 |
Correct |
1 ms |
512 KB |
Output is correct |
5 |
Correct |
1 ms |
512 KB |
Output is correct |
6 |
Correct |
1 ms |
384 KB |
Output is correct |
7 |
Correct |
1 ms |
512 KB |
Output is correct |
8 |
Correct |
2 ms |
512 KB |
Output is correct |
9 |
Correct |
2 ms |
768 KB |
Output is correct |
10 |
Correct |
1 ms |
384 KB |
Output is correct |
11 |
Correct |
2 ms |
512 KB |
Output is correct |
12 |
Correct |
4 ms |
1024 KB |
Output is correct |
13 |
Correct |
4 ms |
1152 KB |
Output is correct |
14 |
Correct |
1 ms |
384 KB |
Output is correct |
15 |
Correct |
1 ms |
512 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
384 KB |
Output is correct |
2 |
Correct |
0 ms |
384 KB |
Output is correct |
3 |
Correct |
1 ms |
384 KB |
Output is correct |
4 |
Correct |
1 ms |
512 KB |
Output is correct |
5 |
Correct |
1 ms |
512 KB |
Output is correct |
6 |
Correct |
1 ms |
384 KB |
Output is correct |
7 |
Correct |
1 ms |
512 KB |
Output is correct |
8 |
Correct |
2 ms |
512 KB |
Output is correct |
9 |
Correct |
2 ms |
768 KB |
Output is correct |
10 |
Correct |
1 ms |
384 KB |
Output is correct |
11 |
Correct |
2 ms |
512 KB |
Output is correct |
12 |
Correct |
4 ms |
1024 KB |
Output is correct |
13 |
Correct |
4 ms |
1152 KB |
Output is correct |
14 |
Correct |
1 ms |
384 KB |
Output is correct |
15 |
Correct |
1 ms |
512 KB |
Output is correct |
16 |
Correct |
556 ms |
83536 KB |
Output is correct |
17 |
Correct |
110 ms |
20716 KB |
Output is correct |
18 |
Correct |
121 ms |
22016 KB |
Output is correct |
19 |
Correct |
630 ms |
94048 KB |
Output is correct |
20 |
Correct |
342 ms |
65784 KB |
Output is correct |
21 |
Correct |
54 ms |
9080 KB |
Output is correct |
22 |
Correct |
385 ms |
63372 KB |
Output is correct |