#include <bits/stdc++.h>
using namespace std;
vector<int> path;
vector<int> mxpath;
int n;
set<int> have;
const int maxN = 256;
bool connected[maxN][maxN]={};
bool ans[maxN][maxN]={};
bool vis[maxN]={};
set<int> comp;
bool are_connected(vector<int> A, vector<int> B);
void dfs(int v, bool fill_comp = false) {
path.push_back(v);
have.insert(v);
vis[v] = true;
if (fill_comp) comp.insert(v);
if (path.size() == n) {
return;
}
vector<int> ord(n);
iota(ord.begin(), ord.end(), 0);
random_shuffle(ord.begin(), ord.end());
for (int i : ord) {
if (!have.count(i)) {
bool c = false;
if (ans[v][i]) {
c = connected[v][i];
}
else {
ans[v][i] = ans[i][v] = true;
bool x = are_connected(vector<int>{i}, vector<int>{v});
connected[v][i] = connected[i][v] = x;
c = x;
}
if (c)
dfs(i);
}
if (path.size() == n) return;
}
if (path.size() == n) return;
if (path.size() > mxpath.size()) {
mxpath = path;
}
path.pop_back();
have.erase(v);
}
vector<int> longest_trip(int N, int D) {
memset(connected, 0, sizeof(connected));
memset(ans, 0, sizeof(ans));
n = N;
int start = 0;
comp.clear();
memset(vis, 0, sizeof(vis));
path.clear();
have.clear();
dfs(0, true);
int cnt = comp.size();
if (cnt == n) {
return mxpath.size() > path.size() ? mxpath : path;
}
for (int i = 0; i < n; ++i) {
if (!vis[i]) {
dfs(i, true);
}
}
return mxpath.size() > path.size() ? mxpath : path;
}
Compilation message
longesttrip.cpp: In function 'void dfs(int, bool)':
longesttrip.cpp:22:21: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
22 | if (path.size() == n) {
| ~~~~~~~~~~~~^~~~
longesttrip.cpp:43:25: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
43 | if (path.size() == n) return;
| ~~~~~~~~~~~~^~~~
longesttrip.cpp:45:21: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
45 | if (path.size() == n) return;
| ~~~~~~~~~~~~^~~~
longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:57:9: warning: unused variable 'start' [-Wunused-variable]
57 | int start = 0;
| ^~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
3 ms |
856 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
344 KB |
Output is correct |
2 |
Correct |
5 ms |
400 KB |
Output is correct |
3 |
Correct |
7 ms |
344 KB |
Output is correct |
4 |
Correct |
6 ms |
600 KB |
Output is correct |
5 |
Correct |
10 ms |
864 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
344 KB |
Output is correct |
2 |
Correct |
5 ms |
344 KB |
Output is correct |
3 |
Correct |
7 ms |
344 KB |
Output is correct |
4 |
Correct |
5 ms |
600 KB |
Output is correct |
5 |
Correct |
8 ms |
856 KB |
Output is correct |
6 |
Incorrect |
0 ms |
344 KB |
Incorrect |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
344 KB |
Output is correct |
2 |
Correct |
5 ms |
344 KB |
Output is correct |
3 |
Correct |
7 ms |
344 KB |
Output is correct |
4 |
Correct |
5 ms |
600 KB |
Output is correct |
5 |
Correct |
9 ms |
856 KB |
Output is correct |
6 |
Correct |
6 ms |
344 KB |
Output is correct |
7 |
Incorrect |
8 ms |
344 KB |
Incorrect |
8 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
8 ms |
344 KB |
Output is correct |
2 |
Correct |
5 ms |
344 KB |
Output is correct |
3 |
Correct |
5 ms |
344 KB |
Output is correct |
4 |
Correct |
8 ms |
600 KB |
Output is correct |
5 |
Correct |
7 ms |
732 KB |
Output is correct |
6 |
Incorrect |
0 ms |
344 KB |
Incorrect |
7 |
Halted |
0 ms |
0 KB |
- |