0_0_17933775_2549.cpp: In function 'long long int dfs(long long int, long long int, long long int, long long int)':
0_0_17933775_2549.cpp:13:45: error: 'max' was not declared in this scope
long long up = (T - max(0, S - (1 << x) + 1));
^
0_0_17933775_2549.cpp:13:45: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from 0_0_17933775_2549.cpp:3:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3454:5: note: 'std::max'
max(initializer_list<_Tp> __l, _Compare __comp)
^
0_0_17933775_2549.cpp:15:75: error: 'min' was not declared in this scope
return min(tmp + step, dfs(S - (1 << (x - 1)) + 1, T, step + x, stop + 1));
^
0_0_17933775_2549.cpp:15:75: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from 0_0_17933775_2549.cpp:3:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3444:5: note: 'std::min'
min(initializer_list<_Tp> __l, _Compare __comp)
^
|