biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:8:18: warning: 'memset' used with length equal to number of elements without multiplication by element size [-Wmemset-elt-size]
8 | memset(b,0,61);
| ^
biscuits.cpp:9:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
9 | for(int i=0;i<a.size();i++)
| ~^~~~~~~~~
biscuits.cpp:19:15: warning: iteration 60 invokes undefined behavior [-Waggressive-loop-optimizations]
19 | b[i+1]+=b[i]/2;
| ~~~~~~^~~~~~~~
biscuits.cpp:12:18: note: within this loop
12 | for(int i=0;i<61;i++){
| ~^~~