이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "longesttrip.h"
#ifdef ngu
#include "grader.cpp"
#endif // ngu
#include<bits/stdc++.h>
using namespace std;
pair<int, int> Find (vector<int> a, vector<int> b) {
if (!are_connected(a, b)) return make_pair(-1, -1);
int l = 0, r = a.size() - 1, lastx = -1, lasty = -1;
while (l <= r) {
int mid = l + r >> 1;
vector<int> ask;
for(int i = 0; i <= mid; i++) ask.push_back(a[i]);
if (are_connected(ask, b)) {
lastx = mid;
r = mid - 1;
} else l = mid + 1;
}
l = 0, r = b.size() - 1;
while (l <= r) {
int mid = l + r >> 1;
vector<int> ask;
for(int i = 0; i <= mid; i++) ask.push_back(b[i]);
if (are_connected(ask, {a[lastx]})) {
lasty = mid;
r = mid - 1;
} else l = mid + 1;
}
assert(are_connected({a[lastx]}, {b[lasty]}));
// if(!are_connected({a[lastx]}, {b[lasty]})) {
// cout << endl;
// for(int &j : a) cout << j << " "; cout << endl;
// for(int &j : b) cout << j << " "; cout << endl;
// cout << lastx << " " << lasty << endl;
// exit(0);
// }
return make_pair(lastx, lasty);
}
vector<int> rev (vector<int> a) {
reverse(a.begin(), a.end());
return a;
}
vector<int> sum (vector<int> a, vector<int> b) {
for(int &j : b) a.push_back(j);
return a;
}
std::vector<int> longest_trip(int n, int d)
{
if (d == 1) {
vector<int> a, b;
a.push_back(0);
b.push_back(1);
for(int i = 2; i < n; i++) {
if (are_connected({a.back()}, {i})) a.push_back(i);
else if (are_connected({b.back()}, {i})) b.push_back(i);
else {
reverse(b.begin(), b.end());
for(int &j : b) a.push_back(j);
b = {i};
}
}
if (a.size() > b.size()) swap(a, b);
if (a.size() > 2 && !are_connected({a[0]}, {a.back()})) {
if (are_connected({a[0]}, {b[0]})) return sum(rev(a), b);
else return sum(a, b);
}
if (b.size() > 2 && !are_connected({b[0]}, {b.back()})) {
if (are_connected({a[0]}, {b[0]})) return sum(rev(a), b);
else return sum(b, a);
}
auto [x, y] = Find(a, b);
if (x < 0) return b;
vector<int> ans;
for(int j = x + 1; j < a.size(); j++) ans.push_back(a[j]);
for(int j = 0; j <= x; j++) ans.push_back(a[j]);
for(int j = y; j < b.size(); j++) ans.push_back(b[j]);
for(int j = 0; j < y; j++) ans.push_back(b[j]);
return ans;
}
}
컴파일 시 표준 에러 (stderr) 메시지
longesttrip.cpp: In function 'std::pair<int, int> Find(std::vector<int>, std::vector<int>)':
longesttrip.cpp:12:17: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
12 | int mid = l + r >> 1;
| ~~^~~
longesttrip.cpp:22:17: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
22 | int mid = l + r >> 1;
| ~~^~~
longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:80:28: 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 = x + 1; j < a.size(); j++) ans.push_back(a[j]);
| ~~^~~~~~~~~~
longesttrip.cpp:82:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
82 | for(int j = y; j < b.size(); j++) ans.push_back(b[j]);
| ~~^~~~~~~~~~
longesttrip.cpp:86:1: warning: control reaches end of non-void function [-Wreturn-type]
86 | }
| ^
# | 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... |