#include "longesttrip.h"
#include<random>
#include<bits/stdc++.h>
#pragma GCC optimize("Ofast")
#pragma GCC target("avx2")
#define all(v) v.begin(),v.end()
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
using PP = pair<ll, P>;
const ll n_ = 1e5 + 505, inf = (ll)2e9 * (ll)1e9 + 7, mod = 998244353;
ll n, m, tc = 1, a, b, c, d, sum, x, y, z, base, ans, k;
vector<int> longest_trip(int N,int D){
vector<int>ret;
n=N;
if(D==3){
for(int i=0;i<n;i++)ret.push_back(i);
}
else if(D==2){
vector<int>A={0},B={1},C={2};
deque<ll>T;
if(are_connected(A,B)){
T.push_back(0);
T.push_back(1);
for(int i=2;i<n;i++){
A.clear(),B.clear(),C.clear();
A.push_back(T.front());
C.push_back(i);
if(are_connected(A,C))T.push_front(i);
else T.push_back(i);
}
}
else if(are_connected(B,C)){
T.push_back(1);
T.push_back(2);
for(int i=0;i<n;i++){
if(i==1 || i==2)continue;
A.clear(),B.clear(),C.clear();
A.push_back(T.front());
C.push_back(i);
if(are_connected(A,C))T.push_front(i);
else T.push_back(i);
}
}
else if(are_connected(A,C)){
T.push_back(0);
T.push_back(2);
for(int i=0;i<n;i++){
if(i==0 || i==2)continue;
A.clear(),B.clear(),C.clear();
A.push_back(T.front());
C.push_back(i);
if(are_connected(A,C))T.push_front(i);
else T.push_back(i);
}
}
while(T.size())ret.push_back(T.back()),T.pop_back();
}
else{
vector<vector<ll>>S;
S.push_back({0});
for(int i=1;i<n;i++){
a=S.back().back();
if(are_connected({a},{i}))S.back().push_back(i);
else{
if(S.size()>=2 && S.back().size()==1)S[S.size()-2].push_back(i);
else S.push_back({i});
}
}
if(S.size()==1){
for(auto nxt:S[0])ret.push_back(nxt);
}
else {
vector<ll>A,B;
A=S[0],B=S[1];
for(int i=2;i<S.size();i++){
vector<ll>T=S[i];
if(are_connected({A.back()},{T[0]})){
for(auto nxt:T)A.push_back(nxt);
}
else if(are_connected({B.back()},{T[0]})){
for(auto nxt:T)B.push_back(nxt);
}
else{
reverse(all(B));
for(auto nxt:B)A.push_back(nxt);
B=T;
}
}
if(A.size()<B.size())swap(A,B);
for(auto i:A)ret.push_back(i);
}
}
return ret;
}
Compilation message
longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:64:22: warning: narrowing conversion of 'a' from 'll' {aka 'long long int'} to 'int' [-Wnarrowing]
64 | if(are_connected({a},{i}))S.back().push_back(i);
| ^
longesttrip.cpp:64:22: warning: narrowing conversion of 'a' from 'll' {aka 'long long int'} to 'int' [-Wnarrowing]
longesttrip.cpp:76:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
76 | for(int i=2;i<S.size();i++){
| ~^~~~~~~~~
longesttrip.cpp:78:29: warning: narrowing conversion of 'A.std::vector<long long int>::back()' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
78 | if(are_connected({A.back()},{T[0]})){
| ~~~~~~^~
longesttrip.cpp:78:29: warning: narrowing conversion of 'A.std::vector<long long int>::back()' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
longesttrip.cpp:78:39: warning: narrowing conversion of 'T.std::vector<long long int>::operator[](0)' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
78 | if(are_connected({A.back()},{T[0]})){
| ^
longesttrip.cpp:78:39: warning: narrowing conversion of 'T.std::vector<long long int>::operator[](0)' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
longesttrip.cpp:81:34: warning: narrowing conversion of 'B.std::vector<long long int>::back()' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
81 | else if(are_connected({B.back()},{T[0]})){
| ~~~~~~^~
longesttrip.cpp:81:34: warning: narrowing conversion of 'B.std::vector<long long int>::back()' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
longesttrip.cpp:81:44: warning: narrowing conversion of 'T.std::vector<long long int>::operator[](0)' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
81 | else if(are_connected({B.back()},{T[0]})){
| ^
longesttrip.cpp:81:44: warning: narrowing conversion of 'T.std::vector<long long int>::operator[](0)' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
2 ms |
856 KB |
Incorrect |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
344 KB |
Output is correct |
3 |
Correct |
1 ms |
344 KB |
Output is correct |
4 |
Correct |
0 ms |
344 KB |
Output is correct |
5 |
Correct |
0 ms |
344 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
344 KB |
Output is correct |
2 |
Correct |
6 ms |
344 KB |
Output is correct |
3 |
Correct |
4 ms |
344 KB |
Output is correct |
4 |
Correct |
4 ms |
344 KB |
Output is correct |
5 |
Correct |
5 ms |
344 KB |
Output is correct |
6 |
Correct |
8 ms |
344 KB |
Output is correct |
7 |
Correct |
6 ms |
344 KB |
Output is correct |
8 |
Correct |
4 ms |
344 KB |
Output is correct |
9 |
Correct |
5 ms |
852 KB |
Output is correct |
10 |
Correct |
4 ms |
600 KB |
Output is correct |
11 |
Correct |
4 ms |
344 KB |
Output is correct |
12 |
Correct |
5 ms |
344 KB |
Output is correct |
13 |
Correct |
5 ms |
344 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
344 KB |
Output is correct |
2 |
Correct |
5 ms |
344 KB |
Output is correct |
3 |
Correct |
5 ms |
344 KB |
Output is correct |
4 |
Correct |
4 ms |
344 KB |
Output is correct |
5 |
Correct |
5 ms |
600 KB |
Output is correct |
6 |
Correct |
5 ms |
344 KB |
Output is correct |
7 |
Correct |
4 ms |
344 KB |
Output is correct |
8 |
Correct |
4 ms |
344 KB |
Output is correct |
9 |
Correct |
4 ms |
600 KB |
Output is correct |
10 |
Correct |
5 ms |
600 KB |
Output is correct |
11 |
Correct |
6 ms |
600 KB |
Output is correct |
12 |
Correct |
6 ms |
608 KB |
Output is correct |
13 |
Correct |
5 ms |
856 KB |
Output is correct |
14 |
Correct |
6 ms |
344 KB |
Output is correct |
15 |
Correct |
7 ms |
344 KB |
Output is correct |
16 |
Correct |
5 ms |
600 KB |
Output is correct |
17 |
Correct |
5 ms |
344 KB |
Output is correct |
18 |
Correct |
5 ms |
344 KB |
Output is correct |
19 |
Correct |
6 ms |
600 KB |
Output is correct |
20 |
Correct |
5 ms |
600 KB |
Output is correct |
21 |
Correct |
5 ms |
612 KB |
Output is correct |
22 |
Correct |
5 ms |
704 KB |
Output is correct |
23 |
Correct |
6 ms |
448 KB |
Output is correct |
24 |
Correct |
5 ms |
448 KB |
Output is correct |
25 |
Correct |
6 ms |
344 KB |
Output is correct |
26 |
Correct |
5 ms |
344 KB |
Output is correct |
27 |
Correct |
5 ms |
344 KB |
Output is correct |
28 |
Correct |
4 ms |
344 KB |
Output is correct |
29 |
Correct |
6 ms |
344 KB |
Output is correct |
30 |
Correct |
4 ms |
344 KB |
Output is correct |
31 |
Correct |
5 ms |
436 KB |
Output is correct |
32 |
Correct |
6 ms |
692 KB |
Output is correct |
33 |
Correct |
6 ms |
344 KB |
Output is correct |
34 |
Correct |
5 ms |
600 KB |
Output is correct |
35 |
Correct |
4 ms |
600 KB |
Output is correct |
36 |
Correct |
5 ms |
900 KB |
Output is correct |
37 |
Correct |
5 ms |
856 KB |
Output is correct |
38 |
Correct |
6 ms |
448 KB |
Output is correct |
39 |
Correct |
7 ms |
860 KB |
Output is correct |
40 |
Correct |
7 ms |
600 KB |
Output is correct |
41 |
Correct |
6 ms |
344 KB |
Output is correct |
42 |
Correct |
7 ms |
608 KB |
Output is correct |
43 |
Correct |
6 ms |
600 KB |
Output is correct |
44 |
Correct |
7 ms |
600 KB |
Output is correct |
45 |
Correct |
6 ms |
344 KB |
Output is correct |
46 |
Correct |
6 ms |
344 KB |
Output is correct |
47 |
Correct |
5 ms |
344 KB |
Output is correct |
48 |
Correct |
7 ms |
344 KB |
Output is correct |
49 |
Correct |
6 ms |
344 KB |
Output is correct |
50 |
Correct |
5 ms |
436 KB |
Output is correct |
51 |
Correct |
7 ms |
944 KB |
Output is correct |
52 |
Correct |
7 ms |
432 KB |
Output is correct |
53 |
Correct |
4 ms |
596 KB |
Output is correct |
54 |
Correct |
4 ms |
1112 KB |
Output is correct |
55 |
Correct |
5 ms |
600 KB |
Output is correct |
56 |
Correct |
5 ms |
856 KB |
Output is correct |
57 |
Correct |
5 ms |
704 KB |
Output is correct |
58 |
Correct |
5 ms |
956 KB |
Output is correct |
59 |
Correct |
6 ms |
608 KB |
Output is correct |
60 |
Correct |
8 ms |
944 KB |
Output is correct |
61 |
Correct |
6 ms |
600 KB |
Output is correct |
62 |
Correct |
8 ms |
688 KB |
Output is correct |
63 |
Correct |
7 ms |
696 KB |
Output is correct |
64 |
Correct |
6 ms |
344 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
344 KB |
Output is correct |
2 |
Correct |
6 ms |
344 KB |
Output is correct |
3 |
Correct |
5 ms |
344 KB |
Output is correct |
4 |
Correct |
4 ms |
344 KB |
Output is correct |
5 |
Correct |
5 ms |
344 KB |
Output is correct |
6 |
Incorrect |
0 ms |
344 KB |
Incorrect |
7 |
Halted |
0 ms |
0 KB |
- |