Processing math: 100%
(Analysis by Chongtian Ma)

Observation: We will add cow c to the back of line b if and only if ac=max(ac,ac+1,,aN).

Proof: Suppose we have already considered cows a1,a2,,ac1 and temporarily constructed an array b1,b2bk1. Let's say ac=max(ac,ac+1,,aN) and we want to consider if adding it to the back of b is optimal. It's important to note that:

Therefore, it is optimal add ac as bk if and only if ac=max(ac,,aN).

Subtask 1: N100

It suffices to fix the position of the old and new positions of the cow we will remove to the front, and recompute b every time. This runs in O(N3).

Full Credit

Let's consider the preliminary array b, constructed before the operation is performed. Let's denote another array pi that represents the position where bi is taken from a.

Consider an index j such that bj>bj+1. Note that it is pointless to move bj+1 before pj, since bj+1 will no longer be a suffix maximum of a. Therefore, the only way we can improve b is through inserting new elements after pj+1, and these new elements must be new suffix maximums that appear after we move bj+1 forwards.

To maximize the number of candidate suffix maximums, it is optimal to move bj+1 right before index pj+1. Why? Consider element ak where pj<k<pj+1, ak<bj and there is no other element after index pj+1 that is greater than ak. After moving bj+1 to a position before k, ak will become a suffix maximum if there is no position l[k+1,pj+11] where al>ak. To maximize the number of candidates for ak, we want the number of elements between pj+1 after the move and pj+2 to be as large as possible. Any element between those two indices can potentially be a new suffix maximum.

What other elements can we insert in b after the move? Consider a non-increasing subsequence s1,s2,,sm formed by elements indexed within [pj+1,pj+21], excluding pj+1. If s1<bj+1 and smbj+2, then all of those elements can be inserted behind bj+1, as they will all become suffix maximums, since bj is moved before pj+1.

Note that we will also need to consider j where bj=bj+1. Even if we move bj+1 before pj, it is still a suffix maximum. However, this move will not improve the number of candidate suffix maximums, as it the upper bound for the suffix maximums will be bj, which is equivalent to bj+1.

It is pointless to consider moving cows not in b, since more suffix maximums can't be produced. Additionally, since you may want to move an element before the start of the array, it may be useful to denote b0=.

Finally, to obtain the lexicographically greatest result, it is optimal to consider the first index j such that a non-empty subsequence of suffix maximums can be newly inserted behind bj+1.

#include <bits/stdc++.h>
using namespace std;

int main(){
	int T; cin >> T;
	while(T--){
		int N; cin >> N;
		vector<int> a(N);
		for(int i = 0; i < N; i++) cin >> a[i];
		
		// build array b without the operation
		// the second element in the pair is the index taken from a
		vector<pair<int, int>> b;
		int suff_max = -1;
		for(int i = N - 1; i >= 0; i--){
			suff_max = max(suff_max, a[i]);
			if(suff_max == a[i]) b.push_back({a[i], i});
		}
		reverse(b.begin(), b.end());
		
		b.insert(b.begin(), {N + 1, -1}); // append arbitrary large number to start of b
		b.push_back({-1, N}); // append arbitrary small number to end of b
		
		for(int i = 1; i < (int) b.size() - 1; i++){
			vector<pair<int, int>> add;
			suff_max = b[i+1].first;
			for(int j = b[i+1].second - 1; j > b[i-1].second; j--){
				if(b[i].second == j) continue;
				suff_max = max(suff_max, a[j]);
				if(suff_max == a[j]) add.push_back({a[j], j});
			}
			reverse(add.begin(), add.end());
			if(!add.empty()){
				b.insert(b.begin() + i + 1, add.begin(), add.end());
				break;
			}
		}
		
		for(int i = 1; i < (int) b.size() - 1; i++){
			cout << b[i].first << " \n"[i + 2 == (int) b.size()];
		}
	}
}
// Bessie says hi vvv

/*
\|/          (__)    
     `\------(oo)
       ||    (__)
       ||w--||     \|/
   \|/
*/