0_0_30613948_14101.cpp:28:8: error: wrong number of template arguments (1, should be 4)
map<rec> dp[110];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/map:61:0,
from 0_0_30613948_14101.cpp:9:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_map.h:96:11: error: provided for 'template<class _Key, class _Tp, class _Compare, class _Alloc> class std::map'
class map
^
0_0_30613948_14101.cpp:28:17: error: invalid type in declaration before ';' token
map<rec> dp[110];
^
0_0_30613948_14101.cpp: In function 'int main()':
0_0_30613948_14101.cpp:62:14: error: 'dfs' was not declared in this scope
dfs(1,false);
^
0_0_30613948_14101.cpp:73:33: error: request for member 'clear' in 'dp[i]', which is of non-class type 'int'
for(int i = 1;i<=n;i++) dp[i].clear();
^
|