#include "longesttrip.h"
#include<bits/stdc++.h>
using namespace std;
vector<int> longest_trip(int n, int d) {
vector<int> a, b, ans, st;
a = {0};
b = {1};
srand(time(NULL));
for (int i = 2; i < n; i++) {
st.push_back(i);
}
random_shuffle(st.begin(), st.end());
for (int i : st) {
if (are_connected({a.back(), b.back()}, {i})) {
if (are_connected({a.back()}, {i})) {
a.push_back(i);
} else {
b.push_back(i);
}
} else {
for (int j = b.size()-1; j >= 0; j--) {
a.push_back(b[j]);
}
b = {i};
}
}
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) {
int m = (l+r)/2;
vector<int> in(a.begin(), a.begin()+m+1);
if (are_connected(in, b)) {
r = m;
} else {
l = m+1;
}
}
e1 = a[l];
l = 0, r = b.size()-1;
while(l < r) {
int m = (l+r)/2;
vector<int> in(b.begin(), b.begin()+m+1);
if (are_connected(a, 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:58:72: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
58 | for (int i = find(a.begin(), a.end(), e1) - a.begin()+1; i < a.size(); i++) {
| ~~^~~~~~~~~~
longesttrip.cpp:64:70: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
64 | for (int i = find(b.begin(), b.end(), e2) - b.begin(); i < b.size(); i++) {
| ~~^~~~~~~~~~
longesttrip.cpp:74:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
74 | for (int j = 0; j < b.size(); j++) {
| ~~^~~~~~~~~~
longesttrip.cpp:80:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
80 | for (int j = 0; j < b.size(); j++) {
| ~~^~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Correct |
3 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
340 KB |
Output is correct |
2 |
Correct |
10 ms |
344 KB |
Output is correct |
3 |
Correct |
10 ms |
344 KB |
Output is correct |
4 |
Correct |
11 ms |
344 KB |
Output is correct |
5 |
Correct |
10 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
344 KB |
Output is correct |
2 |
Correct |
14 ms |
344 KB |
Output is correct |
3 |
Correct |
10 ms |
392 KB |
Output is correct |
4 |
Correct |
11 ms |
344 KB |
Output is correct |
5 |
Correct |
14 ms |
344 KB |
Output is correct |
6 |
Correct |
14 ms |
344 KB |
Output is correct |
7 |
Correct |
10 ms |
344 KB |
Output is correct |
8 |
Correct |
10 ms |
344 KB |
Output is correct |
9 |
Correct |
13 ms |
344 KB |
Output is correct |
10 |
Correct |
9 ms |
344 KB |
Output is correct |
11 |
Correct |
12 ms |
344 KB |
Output is correct |
12 |
Correct |
10 ms |
344 KB |
Output is correct |
13 |
Correct |
7 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
344 KB |
Output is correct |
2 |
Correct |
10 ms |
344 KB |
Output is correct |
3 |
Correct |
13 ms |
344 KB |
Output is correct |
4 |
Correct |
10 ms |
344 KB |
Output is correct |
5 |
Correct |
12 ms |
344 KB |
Output is correct |
6 |
Correct |
14 ms |
344 KB |
Output is correct |
7 |
Correct |
10 ms |
344 KB |
Output is correct |
8 |
Correct |
13 ms |
344 KB |
Output is correct |
9 |
Correct |
12 ms |
344 KB |
Output is correct |
10 |
Correct |
12 ms |
344 KB |
Output is correct |
11 |
Correct |
7 ms |
344 KB |
Output is correct |
12 |
Correct |
7 ms |
340 KB |
Output is correct |
13 |
Correct |
10 ms |
344 KB |
Output is correct |
14 |
Correct |
6 ms |
344 KB |
Output is correct |
15 |
Correct |
8 ms |
344 KB |
Output is correct |
16 |
Incorrect |
2 ms |
344 KB |
Incorrect |
17 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
13 ms |
344 KB |
Output is correct |
2 |
Correct |
10 ms |
344 KB |
Output is correct |
3 |
Correct |
10 ms |
344 KB |
Output is correct |
4 |
Correct |
11 ms |
344 KB |
Output is correct |
5 |
Partially correct |
11 ms |
344 KB |
Output is partially correct |
6 |
Correct |
14 ms |
344 KB |
Output is correct |
7 |
Correct |
10 ms |
344 KB |
Output is correct |
8 |
Correct |
10 ms |
344 KB |
Output is correct |
9 |
Correct |
10 ms |
344 KB |
Output is correct |
10 |
Partially correct |
10 ms |
344 KB |
Output is partially correct |
11 |
Partially correct |
9 ms |
344 KB |
Output is partially correct |
12 |
Partially correct |
7 ms |
344 KB |
Output is partially correct |
13 |
Partially correct |
10 ms |
344 KB |
Output is partially correct |
14 |
Correct |
6 ms |
344 KB |
Output is correct |
15 |
Correct |
6 ms |
344 KB |
Output is correct |
16 |
Incorrect |
5 ms |
344 KB |
Incorrect |
17 |
Halted |
0 ms |
0 KB |
- |