/in/foo.cc: In function 'int main()':
/in/foo.cc:48:7: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(i>1) t=min(t,max(f[i-1][j][0]+A[i].x-A[i-1].x,A[i].t));
^~
/in/foo.cc:49:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(j<N) t=min(t,max(f[i][j+1][1]+A[j+1].x-A[i].x,A[i].t));
^~
/in/foo.cc:44:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int l=N-1;l>0;l--)
^~~
/in/foo.cc:58:6: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
int Ans=inf;
^~~