Advertisement
Guest User

Untitled

a guest
Feb 24th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. struct query {
  2. int l,r,i;
  3. bool operator < (const query &q) const {
  4. return l/BLCK_SIZE < q.l/BLCK_SIZE || (l/BLCK_SIZE == q.l/BLCK_SIZE && r < q.r);
  5. }
  6. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement