tracks.cpp: In function 'int main()':
tracks.cpp:40:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
40 | {if(vis[i][j])
| ^~
tracks.cpp:42:5: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
42 | q.push({i,j});
| ^
tracks.cpp:49:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
49 | if(vis[s][e])
| ^~
tracks.cpp:51:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
51 | vis[s][e]=true;
| ^~~
tracks.cpp:53:33: warning: comparison of integer expressions of different signedness: 'long long int' and 'long long unsigned int' [-Wsign-compare]
53 | {if(s+u.fi<0||s+u.fi>n)
| ~~~~~~^~
tracks.cpp:53:14: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
53 | {if(s+u.fi<0||s+u.fi>n)
| ^~
tracks.cpp:55:17: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
55 | if(e+u.se<0||e+u.se>m)
| ^~
tracks.cpp:55:36: warning: comparison of integer expressions of different signedness: 'long long int' and 'long long unsigned int' [-Wsign-compare]
55 | if(e+u.se<0||e+u.se>m)
| ~~~~~~^~
tracks.cpp:18:5: warning: unused variable 'inf' [-Wunused-variable]
18 | {ll inf=10000000000000;
| ^~~
tracks.cpp:19:8: warning: unused variable 'k' [-Wunused-variable]
19 | ull k,h,i,t,j,n,m;
| ^
tracks.cpp:19:10: warning: unused variable 'h' [-Wunused-variable]
19 | ull k,h,i,t,j,n,m;
| ^
tracks.cpp:19:14: warning: unused variable 't' [-Wunused-variable]
19 | ull k,h,i,t,j,n,m;
| ^
tracks.cpp:23:6: warning: unused variable 'dist' [-Wunused-variable]
23 | char dist[n+1][m+1];
| ^~~~