0_0_13986720_775.cpp: In function 'int solve(int, int)':
0_0_13986720_775.cpp:23:12: error: 'dp' was not declared in this scope
memset(dp,0,sizeof(dp));
^
0_0_13986720_775.cpp:38:33: error: 'judge' was not declared in this scope
if(judge(i,j,mid))l=mid+1;
^
0_0_13986720_775.cpp:41:13: error: 'edge' was not declared in this scope
edge[i][j]=l-1;
^
0_0_13986720_775.cpp:47:22: error: no matching function for call to 'min()'
dp[i][j]=min();
^
0_0_13986720_775.cpp:47:22: note: candidates are:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39,
from 0_0_13986720_775.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:194:5: note: template<class _Tp> const _Tp& std::min(const _Tp&, const _Tp&)
min(const _Tp& __a, const _Tp& __b)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:194:5: note: template argument deduction/substitution failed:
0_0_13986720_775.cpp:47:22: note: candidate expects 2 arguments, 0 provided
dp[i][j]=min();
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39,
from 0_0_13986720_775.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:240:5: note: template<class _Tp, class _Compare> const _Tp& std::min(const _Tp&, const _Tp&, _Compare)
min(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:240:5: note: template argument deduction/substitution failed:
0_0_13986720_775.cpp:47:22: note: candidate expects 3 arguments, 0 provided
dp[i][j]=min();
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from 0_0_13986720_775.cpp:11:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3439:5: note: template<class _Tp> _Tp std::min(std::initializer_list<_Tp>)
min(initializer_list<_Tp> __l)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3439:5: note: template argument deduction/substitution failed:
0_0_13986720_775.cpp:47:22: note: candidate expects 1 argument, 0 provided
dp[i][j]=min();
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from 0_0_13986720_775.cpp:11:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3444:5: note: template<class _Tp, class _Compare> _Tp std::min(std::initializer_list<_Tp>, _Compare)
min(initializer_list<_Tp> __l, _Compare __comp)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3444:5: note: template argument deduction/substitution failed:
0_0_13986720_775.cpp:47:22: note: candidate expects 2 arguments, 0 provided
dp[i][j]=min();
^
0_0_13986720_775.cpp: In function 'int main()':
0_0_13986720_775.cpp:57:22: error: 'i' was not declared in this scope
scanf("%s",s[i]+1);
^
0_0_13986720_775.cpp:62:24: error: no matching function for call to 'shuffle(int&, int&)'
shuffle(N,M);
^
0_0_13986720_775.cpp:62:24: note: candidate is:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from 0_0_13986720_775.cpp:11:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3705:5: note: template<class _RAIter, class _UGenerator> void std::shuffle(_RAIter, _RAIter, _UGenerator&&)
shuffle(_RandomAccessIterator __first, _RandomAccessIterator __last,
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3705:5: note: template argument deduction/substitution failed:
0_0_13986720_775.cpp:62:24: note: candidate expects 3 arguments, 2 provided
shuffle(N,M);
^
|