0_0_38581313_1823.cpp:2:5: error: 'map' does not name a type
map<int,bool> mp;
^~~
0_0_38581313_1823.cpp: In function 'int main()':
0_0_38581313_1823.cpp:11:50: error: 'min' was not declared in this scope
n = rand()%100000+2,m=rand()%100000+1,k=rand()%min(n,10)+1;
^~~
0_0_38581313_1823.cpp:11:50: note: suggested alternative:
In file included from gcc-8.5.0/lib/gcc/x86_64-w64-mingw32/8.5.0/include/c++/algorithm:62,
from gcc-8.5.0/lib/gcc/x86_64-w64-mingw32/8.5.0/include/c++/x86_64-w64-mingw32/bits/stdc++.h:65,
from 0_0_38581313_1823.cpp:1:
gcc-8.5.0/lib/gcc/x86_64-w64-mingw32/8.5.0/include/c++/bits/stl_algo.h:3456:5: note: 'std::min'
min(initializer_list<_Tp> __l, _Compare __comp)
^~~
0_0_38581313_1823.cpp:18:10: error: 'mp' was not declared in this scope
while(mp[b]) b=rand()%1000000000+1;
^~
0_0_38581313_1823.cpp:18:10: note: suggested alternative: 'm'
while(mp[b]) b=rand()%1000000000+1;
^~
m
0_0_38581313_1823.cpp:19:4: error: 'mp' was not declared in this scope
mp[b]=1;
^~
0_0_38581313_1823.cpp:19:4: note: suggested alternative: 'm'
mp[b]=1;
^~
m
|