#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include #include using namespace std; using namespace atcoder; using ll=long long; void IO(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); } int main(){ IO(); ll t; cin>>t; while(t--){ ll n; cin>>n; vector a(n+1); for(ll i=1;i<=n;i++){ cin>>a[i]; } bool ok=true; ll lim=-1e18; for(ll i=1;i=lim){ lim=tmp; } } cout<