prison.cpp: In function 'int32_t main()':
prison.cpp:28:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
28 | for (int i = 1; i <= n; i++) u.push_back(a[i]); sort(u.begin(), u.end(), cmp);
| ^~~
prison.cpp:28:50: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
28 | for (int i = 1; i <= n; i++) u.push_back(a[i]); sort(u.begin(), u.end(), cmp);
| ^~~~
prison.cpp:29:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
29 | for (int i = 0; i < m; i++) n -= u[i]; n -= a[0]; cout << n;
| ^~~
prison.cpp:29:41: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
29 | for (int i = 0; i < m; i++) n -= u[i]; n -= a[0]; cout << n;
| ^