cc1plus: error: '::main' must return 'int'
Colors.cpp: In function 'int main()':
Colors.cpp:3:13: error: expected primary-expression before 'long'
3 | #define int long long
| ^~~~
Colors.cpp:16:14: note: in expansion of macro 'int'
16 | i = max(i, int(1) - (c += d * l++));
| ^~~
Colors.cpp:21:3: error: 'll' was not declared in this scope; did you mean 'l'?
21 | ll m = (l + r - 1) >> 1;
| ^~
| l
Colors.cpp:22:21: error: 'm' was not declared in this scope
22 | if(query(i += d * m)) r = m;
| ^
Colors.cpp:13:13: warning: unused variable 'c' [-Wunused-variable]
13 | int i = 0, c = 0, l = 1, r = N, d = -1;
| ^