Last active
February 24, 2017 06:49
-
-
Save zhrkvl/0987ecd54c656f5ac57678df579b7a47 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int bl_sz = 1; | |
class query | |
{ | |
int l; | |
int r; | |
int id; | |
} | |
bool comp(const query& a, const query& b) | |
{ | |
return (a.r / bl_sz == b.r / bl_sz) ? a.l < b.l : a.r < b.r; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment