/in/foo.cc:6:7: error: 'int time' redeclared as different kind of symbol
int n,time=0,sum=0,dp[101];
^~~~
In file included from /usr/include/pthread.h:24:0,
from /usr/include/x86_64-linux-gnu/c++/7/bits/gthr-default.h:35,
from /usr/include/x86_64-linux-gnu/c++/7/bits/gthr.h:148,
from /usr/include/c++/7/ext/atomicity.h:35,
from /usr/include/c++/7/bits/ios_base.h:39,
from /usr/include/c++/7/ios:42,
from /usr/include/c++/7/ostream:38,
from /usr/include/c++/7/iostream:39,
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:26:16: error: invalid operands of types 'int' and 'time_t(time_t*) throw () {aka long int(long int*) throw ()}' to binary 'operator-'
if(e[i].a-time>=e[i].t)
~~~~~~^~~~~
/in/foo.cc:28:12: warning: pointer to a function used in arithmetic [-Wpointer-arith]
time+=e[i].t;
~~~~^~~~~~~~
/in/foo.cc:28:19: error: assignment of read-only location 'time'
time+=e[i].t;
^
/in/foo.cc:28:19: error: cannot convert 'time_t (*)(time_t*) throw () {aka long int (*)(long int*) throw ()}' to 'time_t(time_t*) throw () {aka long int(long int*) throw ()}' in assignment