/in/foo.cc: In function 'int Tree::lca(int, int)':
/in/foo.cc:23:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int d=dep[u]-dep[v],i=0;d;d>>=1,i++)if(d&1)u=fa[u][i];if(u==v)return u;
^~~
/in/foo.cc:23:67: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int d=dep[u]-dep[v],i=0;d;d>>=1,i++)if(d&1)u=fa[u][i];if(u==v)return u;
^~
/in/foo.cc:24:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=17;i>=0;i--)if(fa[u][i]!=fa[v][i])u=fa[u][i],v=fa[v][i];return fa[u][0];
^~~
/in/foo.cc:24:75: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i=17;i>=0;i--)if(fa[u][i]!=fa[v][i])u=fa[u][i],v=fa[v][i];return fa[u][0];
^~~~~~
/in/foo.cc: In function 'void Tree::clear()':
/in/foo.cc:29:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=1;i<=k;i++)for(int j=0;j<18;j++)fa[i][j]=0;df=0;
^~~
/in/foo.cc:29:62: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i=1;i<=k;i++)for(int j=0;j<18;j++)fa[i][j]=0;df=0;
^~
/in/foo.cc: In function 'void Grph::ins(int, int, int, int)':
/in/foo.cc:41:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(u==1)add(s,ctt+1,0),add(s,ctt+3,0);for(int i=1;i<=4;i++)tp[ctt+i]=d;//拆成4条边
^~
/in/foo.cc:41:47: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(u==1)add(s,ctt+1,0),add(s,ctt+3,0);for(int i=1;i<=4;i++)tp[ctt+i]=d;//拆成4条边
^~~
/in/foo.cc: In function 'void Grph::solve()':
/in/foo.cc:69:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=1;i<=ctt;i++)d[i]=(1LL<<40);d[s]=0;
^~~
/in/foo.cc:69:47: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i=1;i<=ctt;i++)d[i]=(1LL<<40);d[s]=0;
^
/in/foo.cc:79:13: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int j=0;j<(int)eib[i].size();j++)ret=min(ret,d[eib[i][j]]);printf("%lld\n",ret);
^~~
/in/foo.cc:79:76: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int j=0;j<(int)eib[i].size();j++)ret=min(ret,d[eib[i][j]]);printf("%lld\n",ret);
^~~~~~
/in/foo.cc: In function 'void Grph::clear()':
/in/foo.cc:89:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=1;i<=ctt+1;i++)book[i]=false;ct=0;ctt=0;
^~~
/in/foo.cc:89:48: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i=1;i<=ctt+1;i++)book[i]=false;ct=0;ctt=0;
^~