biscuits.cpp:3:60: error: 'vector' has not been declared
3 | long long countSolutions( int b, long long s, long long x, vector <long long> &a ) {
| ^~~~~~
biscuits.cpp:3:67: error: expected ',' or '...' before '<' token
3 | long long countSolutions( int b, long long s, long long x, vector <long long> &a ) {
| ^
biscuits.cpp: In function 'long long int countSolutions(int, long long int, long long int, int)':
biscuits.cpp:6:15: error: 'a' was not declared in this scope
6 | if ( b >= a.size() )
| ^
biscuits.cpp:9:41: error: 'a' was not declared in this scope
9 | solutions = countSolutions( b + 1, (a[b] + s ) / 2, x, a );
| ^
biscuits.cpp: At global scope:
biscuits.cpp:16:41: error: 'vector' has not been declared
16 | long long count_tastiness( long long x, vector <long long> a ) {
| ^~~~~~
biscuits.cpp:16:48: error: expected ',' or '...' before '<' token
16 | long long count_tastiness( long long x, vector <long long> a ) {
| ^
biscuits.cpp: In function 'long long int count_tastiness(long long int, int)':
biscuits.cpp:19:5: error: 'unordered_map' was not declared in this scope
19 | unordered_map <long, long long> dp[k];
| ^~~~~~~~~~~~~
biscuits.cpp:19:20: error: expected primary-expression before 'long'
19 | unordered_map <long, long long> dp[k];
| ^~~~
biscuits.cpp:21:5: error: 'a' was not declared in this scope
21 | a.resize( k );
| ^
biscuits.cpp:18:18: warning: unused variable 'm' [-Wunused-variable]
18 | long long s, m;
| ^