/in/foo.cc: In function 'int read()':
/in/foo.cc:6:2: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(ch>='0'&&ch<='9')x=x*10+ch-'0',ch=getchar(); return x;
^~~~~
/in/foo.cc:6:53: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'while'
while(ch>='0'&&ch<='9')x=x*10+ch-'0',ch=getchar(); return x;
^~~~~~
/in/foo.cc: In function 'int spfa(int, int)':
/in/foo.cc:21:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=1;i<=ed;i++)dis[i]=inf,vis[i]=0; dis[st]=0,vis[st]=1;
^~~
/in/foo.cc:21:48: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i=1;i<=ed;i++)dis[i]=inf,vis[i]=0; dis[st]=0,vis[st]=1;
^~~
/in/foo.cc:22:5: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(!q.empty())q.pop(); q.push(st); int x,y;
^~~~~
/in/foo.cc:22:31: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'while'
while(!q.empty())q.pop(); q.push(st); int x,y;
^