amusementpark.cpp: In function 'int main()':
amusementpark.cpp:15:26: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int64_t' {aka 'long int'} [-Wsign-compare]
15 | for (size_t i = 0; i < m; i++)
| ~~^~~
amusementpark.cpp:23:26: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
23 | for (size_t i = 0; i < 1 << n; i++)
| ~~^~~~~~~~
amusementpark.cpp:26:30: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int64_t' {aka 'long int'} [-Wsign-compare]
26 | for (size_t j = 0; j < n; j++)
| ~~^~~
amusementpark.cpp:32:26: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
32 | for (size_t i = 0; i < 1 << n; i++)
| ~~^~~~~~~~