#include using namespace std; int main(){ int n;cin>>n; long long a[n]; for(int i = 0; n > i; i++)cin>>a[i]; int b[n]; int c[n]; b[0]=0;//広義単調増加 c[0]=0;//広義単調減少 for(int i = 1; n > i; i++){ if(a[i-1] < a[i]) c[i] = i; else c[i] = c[i-1]; if(a[i-1] > a[i]) b[i] = i; else b[i] = b[i-1]; } int q;cin>>q; for(int i = 0; q > i; i++){ int l,r;cin>>l>>r; if(b[r] > l)cout << 0; else cout << 1; cout << " "; if(c[r] > l)cout << 0; else cout << 1; cout << endl; } }