biscuits.cpp: In function 'long long int calc(long long int)':
biscuits.cpp:13:43: error: 'i' was not declared in this scope
13 | return dp[n]=calc(pw2)+calc(min(n,1+s[i]/x)-pw2);
| ^
biscuits.cpp:13:46: error: 'x' was not declared in this scope
13 | return dp[n]=calc(pw2)+calc(min(n,1+s[i]/x)-pw2);
| ^
biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:18:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
18 | for(int i=1;i<a.size();i++)
| ~^~~~~~~~~
biscuits.cpp:22:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | for(int i=0;i<=a.size();i++)
| ~^~~~~~~~~~