longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:67:16: error: expected identifier before numeric constant
67 | for(auto i : [0, n/2, n/3, n/3*2, n - 1]){
| ^
longesttrip.cpp:67:17: error: expected ']' before ',' token
67 | for(auto i : [0, n/2, n/3, n/3*2, n - 1]){
| ^
| ]
longesttrip.cpp: In lambda function:
longesttrip.cpp:67:17: error: expected '{' before ',' token
longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:67:20: warning: right operand of comma operator has no effect [-Wunused-value]
67 | for(auto i : [0, n/2, n/3, n/3*2, n - 1]){
| ~^~
longesttrip.cpp:67:25: warning: right operand of comma operator has no effect [-Wunused-value]
67 | for(auto i : [0, n/2, n/3, n/3*2, n - 1]){
| ~^~
longesttrip.cpp:67:32: warning: right operand of comma operator has no effect [-Wunused-value]
67 | for(auto i : [0, n/2, n/3, n/3*2, n - 1]){
| ~~~^~
longesttrip.cpp:67:40: error: 'begin' was not declared in this scope
67 | for(auto i : [0, n/2, n/3, n/3*2, n - 1]){
| ^
longesttrip.cpp:67:40: note: suggested alternatives:
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:95,
from longesttrip.cpp:2:
/usr/include/c++/10/valarray:1224:5: note: 'std::begin'
1224 | begin(const valarray<_Tp>& __va)
| ^~~~~
In file included from /usr/include/c++/10/filesystem:46,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:129,
from longesttrip.cpp:2:
/usr/include/c++/10/bits/fs_dir.h:549:3: note: 'std::filesystem::__cxx11::begin'
549 | begin(recursive_directory_iterator __iter) noexcept
| ^~~~~
longesttrip.cpp:67:40: error: 'end' was not declared in this scope
67 | for(auto i : [0, n/2, n/3, n/3*2, n - 1]){
| ^
longesttrip.cpp:67:40: note: suggested alternatives:
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:95,
from longesttrip.cpp:2:
/usr/include/c++/10/valarray:1244:5: note: 'std::end'
1244 | end(const valarray<_Tp>& __va)
| ^~~
In file included from /usr/include/c++/10/filesystem:46,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:129,
from longesttrip.cpp:2:
/usr/include/c++/10/bits/fs_dir.h:554:3: note: 'std::filesystem::__cxx11::end'
554 | end(recursive_directory_iterator) noexcept
| ^~~
longesttrip.cpp:67:41: error: expected ')' before ']' token
67 | for(auto i : [0, n/2, n/3, n/3*2, n - 1]){
| ~ ^
| )
longesttrip.cpp:67:41: error: expected primary-expression before ']' token
longesttrip.cpp:65:13: warning: unused variable 'ans' [-Wunused-variable]
65 | ll rt = 0, ans = 0;
| ^~~