0_0_37450516_23729.cpp:14:14: error: 'int time [105]' redeclared as different kind of symbol
int time[maxn];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/ctime:42:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:49,
from 0_0_37450516_23729.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/time.h:233:29: note: previous declaration 'time_t time(time_t*)'
__CRT_INLINE time_t __cdecl time(time_t *_Time) { return _time64(_Time); }
^
0_0_37450516_23729.cpp: In function 'bool SPFA()':
0_0_37450516_23729.cpp:26:16: error: lvalue required as increment operand
time[x]++;
^
0_0_37450516_23729.cpp:27:23: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
if (time[x] > n)
^
0_0_37450516_23729.cpp: In function 'int main()':
0_0_37450516_23729.cpp:57:36: error: ISO C++ forbids applying 'sizeof' to an expression of function type [-fpermissive]
memset(time, 0, sizeof(time));
^
0_0_37450516_23729.cpp:57:37: error: invalid conversion from 'time_t (*)(time_t*) {aka long long int (*)(long long int*)}' to 'void*' [-fpermissive]
memset(time, 0, sizeof(time));
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/cstring:42:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:48,
from 0_0_37450516_23729.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/string.h:43:18: note: initializing argument 1 of 'void* memset(void*, int, size_t)'
void * __cdecl memset(void *_Dst,int _Val,size_t _Size);
^
|