#include "longesttrip.h"
#include<bits/stdc++.h>
using namespace std;
vector<int> longest_trip(int n, int d) {
vector<int> a, b, ans, st;
for (int i = 0; i < n; i++) {
st.push_back(i);
}
random_device rd;
mt19937 g(rd());
shuffle(st.begin(), st.end(), g);
a = {st[0]};
b = {st[1]};
st.erase(st.begin());
st.erase(st.begin());
set<pair<int, int>> ch;
for (int i : st) {
if (ch.count({a.back(), b.back()})) {
if (are_connected({a.back()}, {i})) {
a.push_back(i);
} else {
b.push_back(i);
ch.insert({a.back(), b.back()});
ch.insert({b.back(), a.back()});
}
} else if (are_connected({a.back()}, {b.back()})) {
if (b.size() == 1) {
ch.insert({i, b.back()});
ch.insert({b.back(), i});
}
for (int j = b.size()-1; j >= 0; j--) {
a.push_back(b[j]);
}
b = {i};
} else {
if (are_connected({a.back()}, {i})) {
a.push_back(i);
} else {
b.push_back(i);
ch.insert({a.back(), b.back()});
ch.insert({b.back(), a.back()});
}
}
}
int co = 2;
if (are_connected(a, b)) {
vector<int> ch1 = {a.front(), a.back()}, ch2 = {b.front(), b.back()};
sort(ch1.begin(), ch1.end());
ch1.erase(unique(ch1.begin(), ch1.end()), ch1.end());
sort(ch2.begin(), ch2.end());
ch2.erase(unique(ch2.begin(), ch2.end()), ch2.end());
if (!are_connected(ch1, ch2)) {
// both become cycles that are connected via some edge?
int l = 0, r = a.size()-1, e1, e2;
while(l < r) {
co++;
int m = (l+r)/2;
vector<int> in;
for (int i = 0; i <= m; i++) {
in.push_back(a[i]);
}
if (are_connected(in, b)) {
r = m;
} else {
l = m+1;
}
}
e1 = a[l];
l = 0, r = b.size()-1;
while(l < r) {
co++;
int m = (l+r)/2;
vector<int> in;
for (int i = 0; i <= m; i++) {
in.push_back(b[i]);
}
if (are_connected({e1}, in)) {
r = m;
} else {
l = m+1;
}
}
e2 = b[l];
vector<int> ans;
for (int i = find(a.begin(), a.end(), e1) - a.begin()+1; i < a.size(); i++) {
ans.push_back(a[i]);
}
for (int i = 0; i <= find(a.begin(), a.end(), e1) - a.begin(); i++) {
ans.push_back(a[i]);
}
for (int i = find(b.begin(), b.end(), e2) - b.begin(); i < b.size(); i++) {
ans.push_back(b[i]);
}
for (int i = 0; i < find(b.begin(), b.end(), e2) - b.begin(); i++) {
ans.push_back(b[i]);
}
a = ans;
b.clear();
} else if (are_connected({a.front()}, {b.front()})) {
reverse(a.begin(), a.end());
for (int j = 0; j < b.size(); j++) {
a.push_back(b[j]);
}
reverse(a.begin(), a.end());
b.clear();
} else if (are_connected({a.back()}, {b.front()})) {
for (int j = 0; j < b.size(); j++) {
a.push_back(b[j]);
}
b.clear();
} else if (are_connected({a.front()}, {b.back()})) {
reverse(a.begin(), a.end());
for (int j = b.size()-1; j >= 0; j--) {
a.push_back(b[j]);
}
reverse(a.begin(), a.end());
b.clear();
} else {
for (int j = b.size()-1; j >= 0; j--) {
a.push_back(b[j]);
}
b.clear();
}
}
if (a.size() >= b.size()) {
ans = a;
} else {
ans = b;
}
return ans;
}
Compilation message
longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:85:72: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
85 | for (int i = find(a.begin(), a.end(), e1) - a.begin()+1; i < a.size(); i++) {
| ~~^~~~~~~~~~
longesttrip.cpp:91:70: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
91 | for (int i = find(b.begin(), b.end(), e2) - b.begin(); i < b.size(); i++) {
| ~~^~~~~~~~~~
longesttrip.cpp:101:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
101 | for (int j = 0; j < b.size(); j++) {
| ~~^~~~~~~~~~
longesttrip.cpp:107:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
107 | for (int j = 0; j < b.size(); j++) {
| ~~^~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
12 ms |
344 KB |
Output is correct |
2 |
Correct |
8 ms |
344 KB |
Output is correct |
3 |
Correct |
6 ms |
344 KB |
Output is correct |
4 |
Correct |
6 ms |
344 KB |
Output is correct |
5 |
Correct |
5 ms |
344 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
9 ms |
344 KB |
Output is correct |
2 |
Correct |
10 ms |
344 KB |
Output is correct |
3 |
Correct |
4 ms |
344 KB |
Output is correct |
4 |
Correct |
6 ms |
344 KB |
Output is correct |
5 |
Correct |
6 ms |
344 KB |
Output is correct |
6 |
Correct |
13 ms |
344 KB |
Output is correct |
7 |
Correct |
9 ms |
356 KB |
Output is correct |
8 |
Correct |
6 ms |
344 KB |
Output is correct |
9 |
Correct |
6 ms |
344 KB |
Output is correct |
10 |
Correct |
6 ms |
344 KB |
Output is correct |
11 |
Correct |
6 ms |
344 KB |
Output is correct |
12 |
Correct |
6 ms |
344 KB |
Output is correct |
13 |
Correct |
8 ms |
344 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
11 ms |
344 KB |
Output is correct |
2 |
Correct |
9 ms |
344 KB |
Output is correct |
3 |
Correct |
6 ms |
340 KB |
Output is correct |
4 |
Correct |
6 ms |
344 KB |
Output is correct |
5 |
Correct |
8 ms |
344 KB |
Output is correct |
6 |
Correct |
14 ms |
344 KB |
Output is correct |
7 |
Correct |
8 ms |
344 KB |
Output is correct |
8 |
Correct |
6 ms |
344 KB |
Output is correct |
9 |
Correct |
5 ms |
344 KB |
Output is correct |
10 |
Correct |
6 ms |
344 KB |
Output is correct |
11 |
Correct |
6 ms |
344 KB |
Output is correct |
12 |
Correct |
7 ms |
600 KB |
Output is correct |
13 |
Correct |
7 ms |
344 KB |
Output is correct |
14 |
Correct |
9 ms |
344 KB |
Output is correct |
15 |
Incorrect |
1 ms |
344 KB |
Incorrect |
16 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
10 ms |
344 KB |
Output is correct |
2 |
Correct |
7 ms |
344 KB |
Output is correct |
3 |
Correct |
7 ms |
344 KB |
Output is correct |
4 |
Correct |
6 ms |
344 KB |
Output is correct |
5 |
Correct |
5 ms |
344 KB |
Output is correct |
6 |
Correct |
14 ms |
344 KB |
Output is correct |
7 |
Correct |
9 ms |
344 KB |
Output is correct |
8 |
Correct |
6 ms |
344 KB |
Output is correct |
9 |
Correct |
6 ms |
344 KB |
Output is correct |
10 |
Correct |
7 ms |
344 KB |
Output is correct |
11 |
Correct |
8 ms |
600 KB |
Output is correct |
12 |
Correct |
5 ms |
344 KB |
Output is correct |
13 |
Correct |
5 ms |
456 KB |
Output is correct |
14 |
Correct |
7 ms |
344 KB |
Output is correct |
15 |
Incorrect |
0 ms |
344 KB |
Incorrect |
16 |
Halted |
0 ms |
0 KB |
- |