biscuits.cpp: In function 'll dp(ll, ll)':
biscuits.cpp:22:9: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | if (pos>=A.size()) return 1;
| ~~~^~~~~~~~~~
biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:5:33: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
5 | #define FOR(i,x,y) for(ll i=x; i<y; i++)
......
49 | FOR(i,0,a.size()) A[i] = a[i];
| ~~~~~~~~~~~~
biscuits.cpp:49:2: note: in expansion of macro 'FOR'
49 | FOR(i,0,a.size()) A[i] = a[i];
| ^~~