AlexNeagu11

Untitled

Mar 19th, 2022
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. if(L <= R) {
  2. for(int j = block[L]; j <= block[R]; ++j) {
  3. ans = max(ans, maxByBlock[j]);
  4. }
  5. }
Advertisement
Add Comment
Please, Sign In to add comment