/in/foo.cc: In function 'void bfs()':
/in/foo.cc:40:1: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(vis[tmp]) continue;vis[tmp]=1;Q.push(tmp);
^~
/in/foo.cc:40:23: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(vis[tmp]) continue;vis[tmp]=1;Q.push(tmp);
^~~
/in/foo.cc:47:1: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(vis[tmp])continue;vis[tmp]=1;Q.push(tmp);
^~
/in/foo.cc:47:22: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(vis[tmp])continue;vis[tmp]=1;Q.push(tmp);
^~~
/in/foo.cc:60:1: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(vis[tmp])continue;vis[tmp]=1;Q.push(tmp);
^~
/in/foo.cc:60:22: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(vis[tmp])continue;vis[tmp]=1;Q.push(tmp);
^~~
/in/foo.cc: In function 'void Work()':
/in/foo.cc:68:30: warning: iteration 100004 invokes undefined behavior [-Waggressive-loop-optimizations]
for(int i=1;i<=MAXN;i++)fa[i]=i;
~~~~~^~
/in/foo.cc:68:14: note: within this loop
for(int i=1;i<=MAXN;i++)fa[i]=i;
~^~~~~~