D - Permutation Transformation

D. Permutation Transformation
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
A permutation — is a sequence of length n integers from 1 to n, in which all the numbers occur exactly once. For example, [1], [3,5,2,1,4], [1,3,2] — permutations, and [2,3,2], [4,3,1], [0] — no.

Polycarp was recently gifted a permutation a[1…n] of length n. Polycarp likes trees more than permutations, so he wants to transform permutation a into a rooted binary tree. He transforms an array of different integers into a tree as follows:

the maximum element of the array becomes the root of the tree;
all elements to the left of the maximum — form a left subtree (which is built according to the same rules but applied to the left part of the array), but if there are no elements to the left of the maximum, then the root has no left child;
all elements to the right of the maximum — form a right subtree (which is built according to the same rules but applied to the right side of the array), but if there are no elements to the right of the maximum, then the root has no right child.
For example, if he builds a tree by permutation a=[3,5,2,1,4], then the root will be the element a2=5, and the left subtree will be the tree that will be built for the subarray a[1…1]=[3], and the right one — for the subarray a[3…5]=[2,1,4]. As a result, the following tree will be built:

The tree corresponding to the permutation a=[3,5,2,1,4].
Another example: let the permutation be a=[1,3,2,7,5,6,4]. In this case, the tree looks like this:

The tree corresponding to the permutation a=[1,3,2,7,5,6,4].
Let us denote by dv the depth of the vertex av, that is, the number of edges on the path from the root to the vertex numbered av. Note that the root depth is zero. Given the permutation a, for each vertex, find the value of dv.

Input
The first line contains one integer t (1≤t≤100) — the number of test cases. Then t test cases follow.

The first line of each test case contains an integer n (1≤n≤100) — the length of the permutation.

This is followed by n numbers a1,a2,…,an — permutation a.

Output
For each test case, output n values — d1,d2,…,dn.

Example
inputCopy
3
5
3 5 2 1 4
1
1
4
4 3 1 2
outputCopy
1 0 2 3 1
0
0 1 3 2
一手递归
终结:没有子树
继续:把最大的找到,为记录,为界,加层数,左范围,右范围

#include<stdio.h>
#include<string.h>
#include<queue>
#define ll long long 
#define inf 0x3f3f3f3f
using namespace std;
int a[105];
int b[105];
int n;
void build(int num,int l,int r){
    
    
	if(l>r)return;
	int i;
	int max1=l;
	for(i=l+1;i<=r;i++){
    
    
		if(a[i]>a[max1]){
    
    
			max1=i;
		}
	}
	b[max1]=num;
	build(num+1,l,max1-1);
	build(num+1,max1+1,r);
}
int main()
{
    
     
	int t;
	scanf("%d",&t);
	while(t--){
    
    
		scanf("%d",&n);
		for(int i=1;i<=n;i++){
    
    
			scanf("%d",&a[i]);
		}
		memset(b,0,sizeof(b));
		build(0,0,n);
		for(int i=1;i<=n;i++){
    
    
			printf("%d ",b[i]);
		}
		printf("\n");
	}
    return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_51945248/article/details/113830625
今日推荐