/in/foo.cc: In function 'void solve()':
/in/foo.cc:39:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
39 | for(int i=1;i<=n;i++)op[i]=-i;for(int i=n+1;i<=2*n;i++)op[i]=i-n;sort(op+1,op+2*n+1,cmp);
| ^~~
/in/foo.cc:39:35: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
39 | for(int i=1;i<=n;i++)op[i]=-i;for(int i=n+1;i<=2*n;i++)op[i]=i-n;sort(op+1,op+2*n+1,cmp);
| ^~~
/in/foo.cc:54:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
54 | for(int i=2*n;i>=1;i--)val[i]=val[i-1];ld ret=0;ld rl=pos[1]-L;ld rr=pos[1];int pl=1;int pr=2;
| ^~~
/in/foo.cc:54:48: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
54 | for(int i=2*n;i>=1;i--)val[i]=val[i-1];ld ret=0;ld rl=pos[1]-L;ld rr=pos[1];int pl=1;int pr=2;
| ^~