race.cpp: In function 'int best_path(int, int, int (*)[2], int*)':
race.cpp:18:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=0;i<n-1;i++)cout<<L[i]<<" ";cout<<endl;
^~~
race.cpp:18:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for(int i=0;i<n-1;i++)cout<<L[i]<<" ";cout<<endl;
^~~~
race.cpp:19:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=0;i<n-1;i++)cout<<sum[i]<<" ";cout<<endl;
^~~
race.cpp:19:42: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for(int i=0;i<n-1;i++)cout<<sum[i]<<" ";cout<<endl;
^~~~