mushrooms.cpp: In function 'int count_mushrooms(int)':
mushrooms.cpp:37:11: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
37 | if (aq == a.size() - 1 || i == n - 1)
| ~~~^~~~~~~~~~~~~~~
mushrooms.cpp:51:11: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
51 | if (bq == b.size() - 1 || i == n - 1)
| ~~~^~~~~~~~~~~~~~~
mushrooms.cpp:9:15: warning: unused variable 'gt' [-Wunused-variable]
9 | int ans = 1, gt = 0;
| ^~
mushrooms.cpp:26:6: warning: unused variable 'qan' [-Wunused-variable]
26 | int qan = 0, atb = 0, aq = 0, bq = 0, anc = 74;
| ^~~