/in/foo.cc:3:15: error: 'int time [10010]' redeclared as different kind of symbol
int time[10010];
^
In file included from /usr/include/c++/6/ctime:42:0,
from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:49,
from /in/foo.cc:1:
/usr/include/time.h:192:15: note: previous declaration 'time_t time(time_t*)'
extern time_t time (time_t *__timer) __THROW;
^~~~
/in/foo.cc: In function 'int main()':
/in/foo.cc:11:27: warning: format '%f' expects argument of type 'float*', but argument 2 has type 'double*' [-Wformat=]
scanf("%f%d",&a,&b);
^
/in/foo.cc:18:19: warning: pointer to a function used in arithmetic [-Wpointer-arith]
time[j]=max(time[j],time[j-gf[i][0]]+gf[i][1]);
^
/in/foo.cc:18:31: warning: pointer to a function used in arithmetic [-Wpointer-arith]
time[j]=max(time[j],time[j-gf[i][0]]+gf[i][1]);
^
/in/foo.cc:18:48: warning: pointer to a function used in arithmetic [-Wpointer-arith]
time[j]=max(time[j],time[j-gf[i][0]]+gf[i][1]);
^
/in/foo.cc:18:57: warning: pointer to a function used in arithmetic [-Wpointer-arith]
time[j]=max(time[j],time[j-gf[i][0]]+gf[i][1]);
^
/in/foo.cc:18:58: error: no matching function for call to 'max(time_t (&)(time_t*) throw (), time_t (*)(time_t*) throw ())'
time[j]=max(time[j],time[j-gf[i][0]]+gf[i][1]);
^
In file included from /usr/include/c++/6/bits/char_traits.h:39:0,
from /usr/include/c++/6/ios:40,
from /usr/include/c++/6/istream:38,
from /usr/include/c++/6/sstream:38,
from /usr/include/c++/6/complex:45,
from /usr/include/c++/6/ccomplex:39,
from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:52,
from /in/foo.cc:1:
/usr/include/c++/6/bits/stl_algobase.h:219:5: note: candidate: template<class _Tp> const _Tp& std::max(const _Tp&, const _Tp&)
max(const _Tp& __a, const _Tp& __b)
^~~
/usr/include/c++/6/bits/stl_algobase.h:219:5: note: template argument deduction/substitution failed:
/in/foo.cc:18:58: note: deduced conflicting types for parameter 'const _Tp' ('long int(long int*) throw ()' and 'time_t (*)(time_t*) throw () {aka long int (*)(long int*) throw ()}')
time[j]=max(time[j],time[j-gf[i][0]]+gf[i][1]);
^
In file included from /usr/include/c++/6/bits/char_traits.h:39:0,
from /usr/include/c++/6/ios:40,
from /usr/include/c++/6/istream:38,
from /usr/include/c++/6/sstream:38,
from /usr/include/c++/6/complex:45,
from /usr/include/c++/6/ccomplex:39,
from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:52,
from /in/foo.cc:1:
/usr/include/c++/6/bits/stl_algobase.h:265:5: note: candidate: template<class _Tp, class _Compare> const _Tp& std::max(const _Tp&, const _Tp&, _Compare)
max(const _Tp& __a, const _Tp& __b, _Compare __comp)
^~~
/usr/include/c++/6/bits/stl_algobase.h:265:5: note: template argument deduction/substitution failed:
/in/foo.cc:18:58: note: deduced conflicting types for parameter 'const _Tp' ('long int(long int*) throw ()' and 'time_t (*)(time_t*) throw () {aka long int (*)(long int*) throw ()}')
time[j]=max(time[j],time[j-gf[i][0]]+gf[i][1]);
^
In file included from /usr/include/c++/6/algorithm:62:0,
from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:65,
from /in/foo.cc:1:
/usr/include/c++/6/bits/stl_algo.h:3459:5: note: candidate: template<class _Tp> _Tp std::max(std::initializer_list<_Tp>)
max(initializer_list<_Tp> __l)
^~~
/usr/include/c++/6/bits/stl_algo.h:3459:5: note: template argument deduction/substitution failed:
/in/foo.cc:18:58: note: mismatched types 'std::initializer_list<_Tp>' and 'time_t (*)(time_t*) throw () {aka long int (*)(long int*) throw ()}'
time[j]=max(time[j],time[j-gf[i][0]]+gf[i][1]);
^
In file included from /usr/include/c++/6/algorithm:62:0,
from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:65,
from /in/foo.cc:1:
/usr/include/c++/6/bits/stl_algo.h:3465:5: note: candidate: template<class _Tp, class _Compare> _Tp std::max(std::initializer_list<_Tp>, _Compare)
max(initializer_list<_Tp> __l, _Compare __comp)
^~~
/usr/include/c++/6/bits/stl_algo.h:3465:5: note: template argument deduction/substitution failed:
/in/foo.cc:18:58: note: mismatched types 'std::initializer_list<_Tp>' and 'time_t (*)(time_t*) throw () {aka long int (*)(long int*) throw ()}'
time[j]=max(time[j],time[j-gf[i][0]]+gf[i][1]);
^
/in/foo.cc:21:27: warning: pointer to a function used in arithmetic [-Wpointer-arith]
printf("%d",time[10000]);
^
/in/foo.cc:21:28: warning: format '%d' expects argument of type 'int', but argument 2 has type 'time_t (*)(time_t*) throw () {aka long int (*)(long int*) throw ()}' [-Wformat=]
printf("%d",time[10000]);
^