/in/foo.cc: In function 'void dij(int)':
/in/foo.cc:34:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(vis[x]) continue;vis[x]=1;
^~
/in/foo.cc:34:23: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(vis[x]) continue;vis[x]=1;
^~~
/in/foo.cc: In function 'void dfs(int)':
/in/foo.cc:50:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0;i<fas[x].size();i++) if(!path[fas[x][i]])
~^~~~~~~~~~~~~~