perm.cpp: In function 'std::vector<int> construct_permutation(long long int)':
perm.cpp:13:32: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
13 | #define fo(x,y,z) for(ll x=y; x<=z; x++)
......
34 | fo(i,u,ans.Z-1)ans[i]++;
| ~~~~~~~~~~~
perm.cpp:34:9: note: in expansion of macro 'fo'
34 | fo(i,u,ans.Z-1)ans[i]++;
| ^~
perm.cpp:23:12: warning: unused variable 'zd' [-Wunused-variable]
23 | ll xd, zd;
| ^~
perm.cpp:13:32: warning: 'xd' may be used uninitialized in this function [-Wmaybe-uninitialized]
13 | #define fo(x,y,z) for(ll x=y; x<=z; x++)
| ^~
perm.cpp:23:8: note: 'xd' was declared here
23 | ll xd, zd;
| ^~