rotate.cpp: In function 'void energy(int, std::vector<int>)':
rotate.cpp:11:58: error: 'j' was not declared in this scope
11 | for(int i=m,x,y;i<n;i++)x=(a[i-m][1]+N/2)%N,y=(x+N-a[j][0])%N,rotate({a[j][1]},y),a[j][0]=x;
| ^
rotate.cpp:11:73: error: no matching function for call to 'rotate(<brace-enclosed initializer list>, int&)'
11 | for(int i=m,x,y;i<n;i++)x=(a[i-m][1]+N/2)%N,y=(x+N-a[j][0])%N,rotate({a[j][1]},y),a[j][0]=x;
| ~~~~~~^~~~~~~~~~~~~
In file included from /usr/include/c++/13/algorithm:61,
from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:51,
from rotate.cpp:2:
/usr/include/c++/13/bits/stl_algo.h:1390:5: note: candidate: 'template<class _FIter> constexpr _FIter std::_V2::rotate(_FIter, _FIter, _FIter)'
1390 | rotate(_ForwardIterator __first, _ForwardIterator __middle,
| ^~~~~~
/usr/include/c++/13/bits/stl_algo.h:1390:5: note: template argument deduction/substitution failed:
rotate.cpp:11:73: note: candidate expects 3 arguments, 2 provided
11 | for(int i=m,x,y;i<n;i++)x=(a[i-m][1]+N/2)%N,y=(x+N-a[j][0])%N,rotate({a[j][1]},y),a[j][0]=x;
| ~~~~~~^~~~~~~~~~~~~
In file included from /usr/include/c++/13/algorithm:73:
/usr/include/c++/13/pstl/glue_algorithm_defs.h:260:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator> std::rotate(_ExecutionPolicy&&, _ForwardIterator, _ForwardIterator, _ForwardIterator)'
260 | rotate(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __middle, _ForwardIterator __last);
| ^~~~~~
/usr/include/c++/13/pstl/glue_algorithm_defs.h:260:1: note: template argument deduction/substitution failed:
rotate.cpp:11:73: note: candidate expects 4 arguments, 2 provided
11 | for(int i=m,x,y;i<n;i++)x=(a[i-m][1]+N/2)%N,y=(x+N-a[j][0])%N,rotate({a[j][1]},y),a[j][0]=x;
| ~~~~~~^~~~~~~~~~~~~
In file included from rotate.cpp:1:
rotate.h:4:6: note: candidate: 'void rotate(std::vector<int>, int)'
4 | void rotate(std::vector<int> t, int x);
| ^~~~~~
rotate.h:4:30: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'std::vector<int>'
4 | void rotate(std::vector<int> t, int x);
| ~~~~~~~~~~~~~~~~~^