cipele.cpp: In function 'long long int get(long long int)':
cipele.cpp:18:19: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
18 | for(register int i = 1; i <= N; ++i) tmp = max(tmp, (long long)abs(L[i] - R[l++]));
| ^
cipele.cpp: In function 'int main()':
cipele.cpp:27:20: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
27 | for(register int i = 1; i <= M; ++i) cin >> R[i];
| ^
cipele.cpp:28:20: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
28 | for(register int i = 1; i <= N; ++i) cin >> L[i];
| ^
cipele.cpp:30:20: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
30 | for(register int i = 1; i <= N; ++i) cin >> L[i];
| ^
cipele.cpp:31:20: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
31 | for(register int i = 1; i <= M; ++i) cin >> R[i];
| ^
cipele.cpp:38:19: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
38 | for(register int l = 1; l + N - 1 <= M; ++l) ans = min(ans, get(l));
| ^