consul.cpp: In function 'void solve(long long int)':
consul.cpp:6:1: error: 'map' was not declared in this scope; did you mean 'std::map'?
6 | map<int,int>mpp;
| ^~~
| std::map
In file included from /usr/include/c++/10/map:61,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:81,
from consul.cpp:1:
/usr/include/c++/10/bits/stl_map.h:100:11: note: 'std::map' declared here
100 | class map
| ^~~
consul.cpp:3:13: error: expected primary-expression before 'long'
3 | #define int long long
| ^~~~
consul.cpp:6:5: note: in expansion of macro 'int'
6 | map<int,int>mpp;
| ^~~
consul.cpp:7:10: error: 'min' was not declared in this scope; did you mean 'std::min'?
7 | int cntt=min(N/2,(int)30);
| ^~~
| std::min
In file included from /usr/include/c++/10/algorithm:62,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
from consul.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:3474:5: note: 'std::min' declared here
3474 | min(initializer_list<_Tp> __l, _Compare __comp)
| ^~~
consul.cpp:10:12: error: 'mpp' was not declared in this scope
10 | if(mpp[x])continue;
| ^~~
consul.cpp:17:9: error: 'mpp' was not declared in this scope
17 | mpp[x]=1;
| ^~~