/in/foo.cc: In function 'void build(int, int, int)':
/in/foo.cc:14:9: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
int m=l+r>>1;
~^~
/in/foo.cc: In function 'void update(int, int, int, int, int, int)':
/in/foo.cc:35:9: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
int m=l+r>>1;
~^~
/in/foo.cc: In function 'void DFS(int, int, int)':
/in/foo.cc:42:41: warning: format '%d' expects argument of type 'int', but argument 4 has type 'll {aka long long int}' [-Wformat=]
printf("a[%d]..a[%d]: %d\n",l,r,ss[now]);
^
/in/foo.cc:44:9: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
int m=l+r>>1;
~^~
/in/foo.cc: In function 'int main()':
/in/foo.cc:59:5: warning: unused variable 'Ans' [-Wunused-variable]
ll Ans;
^~~