biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:11:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
11 | #define rng(i,a,b) for(int (i)=(a);(i)<(b);(i)++)
| ^
biscuits.cpp:25:2: note: in expansion of macro 'rng'
25 | rng(i,k,60) a[i]=0;
| ^~~
biscuits.cpp:11:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
11 | #define rng(i,a,b) for(int (i)=(a);(i)<(b);(i)++)
| ^
biscuits.cpp:12:18: note: in expansion of macro 'rng'
12 | #define rep(i,n) rng((i),(0),(n))
| ^~~
biscuits.cpp:32:2: note: in expansion of macro 'rep'
32 | rep(i,60){
| ^~~
biscuits.cpp:11:28: warning: unnecessary parentheses in declaration of 'j' [-Wparentheses]
11 | #define rng(i,a,b) for(int (i)=(a);(i)<(b);(i)++)
| ^
biscuits.cpp:34:3: note: in expansion of macro 'rng'
34 | rng(j,i+1,60){
| ^~~
biscuits.cpp:11:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
11 | #define rng(i,a,b) for(int (i)=(a);(i)<(b);(i)++)
| ^
biscuits.cpp:12:18: note: in expansion of macro 'rng'
12 | #define rep(i,n) rng((i),(0),(n))
| ^~~
biscuits.cpp:59:2: note: in expansion of macro 'rep'
59 | rep(i,k) {
| ^~~
biscuits.cpp:11:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
11 | #define rng(i,a,b) for(int (i)=(a);(i)<(b);(i)++)
| ^
biscuits.cpp:12:18: note: in expansion of macro 'rng'
12 | #define rep(i,n) rng((i),(0),(n))
| ^~~
biscuits.cpp:65:2: note: in expansion of macro 'rep'
65 | rep(i,60){
| ^~~
biscuits.cpp:67:9: warning: unused variable 'nxt' [-Wunused-variable]
67 | auto& nxt=mp[(i+1)];
| ^~~