biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:16:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
16 | for(int i = 0; i + 1 < a.size(); ++i){
| ~~~~~~^~~~~~~~~~
biscuits.cpp:29:44: warning: narrowing conversion of 'a.std::vector<long long int>::operator[](((std::vector<long long int>::size_type)i))' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
29 | if(i == 0 || a[i - 1] == 0) v.pb({a[i]});
| ^
biscuits.cpp:29:44: warning: narrowing conversion of 'a.std::vector<long long int>::operator[](((std::vector<long long int>::size_type)i))' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
biscuits.cpp:48:16: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
48 | DP.pb({j.ff + a[i] >> 1, j.ss});
biscuits.cpp:51:24: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
51 | DP.pb({j.ff + a[i] - x >> 1, j.ss});
| ~~~~~~~~~~~~^~~
biscuits.cpp:57:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
57 | for(int j = 0; j < DP.size(); ++j){
| ~~^~~~~~~~~~~