0_0_23729864_25691.cpp:10:23: error: 'long long unsigned int pow [230005]' redeclared as different kind of symbol
ull h[N],hash[N],pow[N];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/cmath:44:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/random:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:66,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62,
from 0_0_23729864_25691.cpp:4:
GCC4.9.2/x86_64-w64-mingw32/include/math.h:151:18: note: previous declaration 'double pow(double, double)'
double __cdecl pow(double _X,double _Y);
^
0_0_23729864_25691.cpp: In function 'long long unsigned int Hash(int, int, long long unsigned int*)':
0_0_23729864_25691.cpp:13:43: error: invalid types '<unresolved overloaded function type>[int]' for array subscript
return hash[r] - hash[l-1] * pow[r-l+1];
^
0_0_23729864_25691.cpp: In function 'int main()':
0_0_23729864_25691.cpp:21:33: error: invalid types '<unresolved overloaded function type>[int]' for array subscript
int n = strlen(s+1),ans; pow[0] = 1;
^
0_0_23729864_25691.cpp:22:25: error: invalid types '<unresolved overloaded function type>[int]' for array subscript
For(i,1,n) pow[i] = pow[i-1] * 26;
^
0_0_23729864_25691.cpp:22:36: error: invalid types '<unresolved overloaded function type>[int]' for array subscript
For(i,1,n) pow[i] = pow[i-1] * 26;
^
0_0_23729864_25691.cpp:23:20: error: reference to 'hash' is ambiguous
For(i,1,n) hash[i] = hash[i-1] * 26 + s[i] - 'a';
^
0_0_23729864_25691.cpp:10:10: note: candidates are: long long unsigned int hash [230005]
ull h[N],hash[N],pow[N];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/basic_string.h:3068:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/string:52,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/random:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:66,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62,
from 0_0_23729864_25691.cpp:4:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/functional_hash.h:58:12: note: template<class _Tp> struct std::hash
struct hash;
^
0_0_23729864_25691.cpp:23:30: error: reference to 'hash' is ambiguous
For(i,1,n) hash[i] = hash[i-1] * 26 + s[i] - 'a';
^
0_0_23729864_25691.cpp:10:10: note: candidates are: long long unsigned int hash [230005]
ull h[N],hash[N],pow[N];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/basic_string.h:3068:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/string:52,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/random:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:66,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62,
from 0_0_23729864_25691.cpp:4:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/functional_hash.h:58:12: note: template<class _Tp> struct std::hash
struct hash;
^
0_0_23729864_25691.cpp:30:45: error: reference to 'hash' is ambiguous
if( Hash(1,n-i,h) == Hash(i+1,n,hash) ){
^
0_0_23729864_25691.cpp:10:10: note: candidates are: long long unsigned int hash [230005]
ull h[N],hash[N],pow[N];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/basic_string.h:3068:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/string:52,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/random:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:66,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62,
from 0_0_23729864_25691.cpp:4:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/functional_hash.h:58:12: note: template<class _Tp> struct std::hash
struct hash;
^
|