int query(int l,int r){ int k=Log[r-l+1]; return min(a[l][k],a[r-(1<<k)+1][k]); } ... query(rd(),rd());
这么写为什么会先读如后面的 rd() ?是快读特性吗?