/in/foo.cc: In function 'int main()':
/in/foo.cc:68:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i < v.size(); i++) if(abs(v[i]) < mi) mi = abs(v[i]),ans = v[i];
~~^~~~~~~~~~
/in/foo.cc:69:38: warning: format '%d' expects argument of type 'int', but argument 2 has type 'll {aka long long int}' [-Wformat=]
if(ans != -INF) printf("%d\n",ans);
^
/in/foo.cc:55:33: warning: 'qq' may be used uninitialized in this function [-Wmaybe-uninitialized]
int res = (q - c + j) * qq;
^~
/in/foo.cc:53:17: warning: 'q' may be used uninitialized in this function [-Wmaybe-uninitialized]
for(int j = -q; j <= q*10; j++)
^~