#P6412. [COCI2008-2009#3] BST

[COCI2008-2009#3] BST

题目描述

现在有一个 1n1\sim n 的排列 aa,将序列中的元素依次放进一个 BST 里,求 BST 中插入函数的执行次数。

注意:第一个数已经作为 BST 的根。

如果您无法理解上面说的话,这里有一份伪代码:

insert( number x, node n )
    c+1;
    if x is less than the number in node n
        if n has no left child
            create a new node with the number x and set it to be the left child of node n
     else
         insert(x, left child of node n)
     else (x is greater than the number in node n)
         if n has no right child
             create a new node with the number x and set it to be the right child of node n
         else
             insert(x, right child of node n) 

您需要求的就是上面的 insert 函数每进行一次后 cc 的值。

再次注意:第一个数已经作为 BST 的根。

输入格式

第一行,一个整数 nn,表示排列 aa 的长度。

接下来 nn 行,每行一个整数,第 ii 行为 aia_i

输出格式

nn 行,一行一个整数,表示上面的 insert 函数每进行一次后 cc 的值。

4
1
2
3
4 

0
1
3
6

5
3
2
4
1
5 

0
1
2
4
6 
8
3
5
1
6
8
7
2
4 

0
1
2
4
7
11
13
15 

提示

数据范围及限制

  • 对于 50%50\% 的数据,保证 n103n\le 10^3
  • 对于 100%100\% 的数据,保证 1n3×1051\le n\le 3\times 10^51ain1\le a_i\le naia_i 互不相同。

说明

本题译自 Croatian Open Competition in Informatics 2008/2009 Contest #3 T5 BST。