mushrooms.cpp: In function 'void solve()':
mushrooms.cpp:26:17: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
26 | for(ll i=0;i<l.size();i++){
| ~^~~~~~~~~
mushrooms.cpp:28:21: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
28 | for(ll j=0;j<v.size();j++){
| ~^~~~~~~~~
mushrooms.cpp:29:16: warning: unused variable 'res' [-Wunused-variable]
29 | ll res=0;
| ^~~
mushrooms.cpp: In function 'int main()':
mushrooms.cpp:46:12: warning: unused variable 'i' [-Wunused-variable]
46 | ll t=1,i=1;
| ^