/in/foo.cc: In function 'void dfs(int, int, int, int, int)':
/in/foo.cc:17:6: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
if(a==0&b==0&&c==0)
~^~~
/in/foo.cc:28:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(x>n) x=n;
^~
/in/foo.cc:29:3: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
dfs(e[x].a-e[nowlast].a,b+e[x].b-e[nowlast].b,c+e[x].c-e[nowlast].c,x,deep+1);
^~~
/in/foo.cc:35:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(x>n) x=n;
^~
/in/foo.cc:36:3: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
dfs(a+e[x].a-e[nowlast].a,e[x].b-e[nowlast].b,c+e[x].c-e[nowlast].c,x,deep+1);
^~~