#pragma GCC target("avx") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include // #include // #include // #include // using namespace __gnu_pbds; // #include // namespace multiprecisioninteger = boost::multiprecision; // using cint=multiprecisioninteger::cpp_int; using namespace std; using ll=long long; #define double long double using datas=pair; using ddatas=pair; using tdata=pair; using vec=vector; using mat=vector; using pvec=vector; using pmat=vector; // using llset=tree,rb_tree_tag,tree_order_statistics_node_update>; #define For(i,a,b) for(i=a;i<(ll)b;++i) #define bFor(i,b,a) for(i=b,--i;i>=(ll)a;--i) #define rep(i,N) For(i,0,N) #define rep1(i,N) For(i,1,N) #define brep(i,N) bFor(i,N,0) #define brep1(i,N) bFor(i,N,1) #define all(v) (v).begin(),(v).end() #define allr(v) (v).rbegin(),(v).rend() #define vsort(v) sort(all(v)) #define vrsort(v) sort(allr(v)) #define uniq(v) vsort(v);(v).erase(unique(all(v)),(v).end()) #define endl "\n" #define eb emplace_back #define print(x) cout< ostream& operator<<(ostream& os,const pair& p){return os<<"("< ostream& operator<<(ostream& os,const vector& v){ os<<"{";bool f=false; for(auto& x:v){if(f)os<<",";os< ostream& operator<<(ostream& os,const set& v){ os<<"{";bool f=false; for(auto& x:v){if(f)os<<",";os< inline bool chmax(T& a,T b){bool x=a inline bool chmin(T& a,T b){bool x=a>b;if(x)a=b;return x;} #ifdef DEBUG void debugg(){cout<void debugg(const T& x,const Args&... args){cout<<" "<0){ if(n&1)res=res*a%m; a=a*a%m; n>>=1; } return res; } ll gcd(ll a,ll b){if(!b)return abs(a);return (a%b==0)?abs(b):gcd(b,a%b);} ll lcm(ll a,ll b){return a/gcd(a,b)*b;} ll countdigits(ll n,ll k=10){ ll ans=0; while(n){n/=k;ans++;} return ans; } ll sumdigits(ll n,ll k=10){ ll ans=0; while(n){ans+=n%k;n/=k;} return ans; } template struct segtree{ private: int N=1; T E; using func=function; func f,g; vector tree; public: segtree(){} segtree(vector& v,T e,func Merge,func Act):E(e),f(Merge),g(Act){ int i,K=v.size(); while(N& v,T e,func Merge){*this=segtree(v,e,Merge,Merge);}; segtree(int N,T e,func F){ vector res(N,e); *this=segtree(res,e,F); } void action(int i,T a){ if((i<0)|(i>=N))return; i+=N; tree[i]=g(tree[i],a); while(i>1){ i>>=1; tree[i]=f(tree[i<<1],tree[(i<<1)|1]); } } void input(int i,T a){ if((i<0)|(i>=N))return; tree[i+=N]=a; while(i>1){ i>>=1; tree[i]=f(tree[i<<1],tree[(i<<1)|1]); } } T queli(int a,int b){ if((a>=b)|(a<0)|(b<=0)|(a>=N)|(b>N))return E; T l(E),r(E); for(a+=N,b+=N;a>=1,b>>=1){ if(a&1)l=f(l,tree[a++]); if(b&1)r=f(tree[--b],r); } return f(l,r); } }; ll N,M,K,H,W,A,B,C,D; string s,t; ll ans; int main(){ startupcpp(); // int codeforces;cin>>codeforces;while(codeforces--){ ll i,j; cin>>N; vec A(N); rep(i,N)cin>>A[i]; cin>>M; vec l(M),r(M); pvec v; rep(i,N){ v.eb(A[i],i); } rep(i,M){ ll x; cin>>l[i]>>r[i]>>x; --l[i]; v.eb(x,i+N); } vsort(v); segtree rMq(N,-inf,[](ll a,ll b){return max(a,b);}),rmq(N,inf,[](ll a,ll b){return min(a,b);}); vec ans(M,inf); for(auto x:v){ if(x.second