merchant.cpp: In function 'bool check(ll)':
merchant.cpp:24:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (int j = 0; j < n; j++) cout << d[i][j] << " "; cout << '\n';
^~~
merchant.cpp:24:56: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (int j = 0; j < n; j++) cout << d[i][j] << " "; cout << '\n';
^~~~
merchant.cpp:34:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (int i = 0; i < n; i++) cout << dist[i] << " "; cout << '\n';
^~~
merchant.cpp:34:56: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (int i = 0; i < n; i++) cout << dist[i] << " "; cout << '\n';
^~~~
merchant.cpp:36:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (int i = 0; i < n; i++) cout << cnt[i] << " "; cout << '\n';
^~~
merchant.cpp:36:55: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (int i = 0; i < n; i++) cout << cnt[i] << " "; cout << '\n';
^~~~
merchant.cpp: In function 'void preprocess()':
merchant.cpp:68:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (int j = 0; j < n; j++) cout << W[i][j] << " "; cout << '\n';
^~~
merchant.cpp:68:56: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (int j = 0; j < n; j++) cout << W[i][j] << " "; cout << '\n';
^~~~
merchant.cpp:73:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (int j = 0; j < n; j++) cout << D[i][j] << " "; cout << '\n';
^~~
merchant.cpp:73:56: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (int j = 0; j < n; j++) cout << D[i][j] << " "; cout << '\n';
^~~~