watching.cpp: In function 'bool ok(int)':
watching.cpp:11:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
11 | for(int i = 0; i <= n; i++) for(int j = 0; j <= n; j++) dp[i][j] = (1 << 30); dp[0][0] = 0;
| ^~~
watching.cpp:11:80: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
11 | for(int i = 0; i <= n; i++) for(int j = 0; j <= n; j++) dp[i][j] = (1 << 30); dp[0][0] = 0;
| ^~
watching.cpp:15:4: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
15 | while(w2 < n && a[w2] <= a[i - 1] - w * 2) w2++; w1 = max(w1, w2);
| ^~~~~
watching.cpp:15:53: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while'
15 | while(w2 < n && a[w2] <= a[i - 1] - w * 2) w2++; w1 = max(w1, w2);
| ^~