This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "longesttrip.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> longest_trip(int N, int D) {
vector<int> a, b;
a.push_back(0);
for (int i = 1; i < N; i ++) {
int x = a.back(), y = are_connected({x}, {i});
if (y) {
a.push_back(i);
continue;
}
if (b.size() == 0) b.push_back(i);
else {
int z = b.back(), k = are_connected({z}, {i});
if (k) b.push_back(i);
else {
for (int j = b.size() - 1; j >= 0; j --) a.push_back(b[j]);
b.clear();
b.push_back(i);
}
}
}
if (b.size() == 0) return a;
if (are_connected(a, b) == 0){
if (a.size() > b.size()) return a;
return b;
}
if (are_connected({a.back()}, {b.back()})) {
for (int j = b.size() - 1; j >= 0; j --) a.push_back(b[j]);
return a;
}
else if (are_connected({a.back()}, {b[0]})) {
for (int j = 0; j < b.size(); j ++) a.push_back(b[j]);
return a;
}
else if (are_connected({a[0]}, {b.back()})) {
for (int j = 0; j < a.size(); j ++) b.push_back(a[j]);
swap(a, b);
return a;
}
else if (are_connected({a[0]}, {b[0]})) {
reverse(a.begin(), a.end());
for (int j = 0; j < b.size(); j ++) a.push_back(b[j]);
return a;
}
int l = 0, r = a.size(), mid;
while (l < r) {
mid = (l + r) / 2;
vector<int> temp;
for (int i = 0; i <= mid; i ++) temp.push_back(a[i]);
if (are_connected(temp, b)) r = mid;
else l = mid + 1;
}
vector<int> ans;
for (int i = l - 1; i >= 0; i --) ans.push_back(a[i]);
for (int i = a.size() - 1; i >= l; i --) ans.push_back(a[i]);
int x = a[l];
l = 0, r = b.size();
while (l < r) {
mid = (l + r) / 2;
vector<int> temp;
for (int i = 0; i <= mid; i ++) temp.push_back(b[i]);
if (are_connected({x}, temp)) r = mid;
else l = mid + 1;
}
for (int i = l; i >= 0; i --) ans.push_back(b[i]);
for (int i = a.size() - 1; i > l; i --) ans.push_back(b[i]);
return ans;
}
Compilation message (stderr)
longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:40:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
40 | for (int j = 0; j < b.size(); j ++) a.push_back(b[j]);
| ~~^~~~~~~~~~
longesttrip.cpp:44:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
44 | for (int j = 0; j < a.size(); j ++) b.push_back(a[j]);
| ~~^~~~~~~~~~
longesttrip.cpp:50:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
50 | for (int j = 0; j < b.size(); j ++) a.push_back(b[j]);
| ~~^~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |