# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1081075 | Kipras | Closing Time (IOI23_closing) | C++17 | 0 ms | 0 KiB |
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 <bits/stdc++.h>
typedef long long ll;
using namespace std;
vector<int> longest_trip(int N, int D){
if(D==3) {
vector<int> a;
for(int i = 0; i < N; i++)a.push_back(i);
return a;
}else if(D==2) {
deque<int> q;
if(!are_connected({0}, {1})) {
q.push_back(0);
q.push_back(2);
q.push_back(1);
}
else if(!are_connected({0}, {2})) {
q.push_back(0);
q.push_back(1);
q.push_back(2);
}
else {
q.push_back(1);
q.push_back(0);
q.push_back(2);
}
for(int i = 3; i < N; i++) {
if(are_connected({q.front()}, {i}))
q.push_front(i);
else
q.push_back(i);
}
vector<int> a;
for(int i = 0; i < N; i++) {
a.push_back(q.front());
q.pop_front();
}
return a;
}
}