CF797D.Broken BST

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Let TT be arbitrary binary tree — tree, every vertex of which has no more than two children. Given tree is rooted, so there exists only one vertex which doesn't have a parent — it's the root of a tree. Every vertex has an integer number written on it. Following algorithm is run on every value from the tree TT :

  1. Set pointer to the root of a tree.
  2. Return success if the value in the current vertex is equal to the number you are looking for
  3. Go to the left child of the vertex if the value in the current vertex is greater than the number you are looking for
  4. Go to the right child of the vertex if the value in the current vertex is less than the number you are looking for
  5. Return fail if you try to go to the vertex that doesn't exist

Here is the pseudo-code of the described algorithm:

<br></br>bool find(TreeNode t, int x) {<br></br> if (t == null)<br></br> return false;<br></br> if (t.value == x)<br></br> return true;<br></br> if (x < t.value)<br></br> return find(t.left, x);<br></br> else<br></br> return find(t.right, x);<br></br>}<br></br>find(root, x);<br></br>The described algorithm works correctly if the tree is binary search tree (i.e. for each node the values of left subtree are less than the value in the node, the values of right subtree are greater than the value in the node). But it can return invalid result if tree is not a binary search tree.

Since the given tree is not necessarily a binary search tree, not all numbers can be found this way. Your task is to calculate, how many times the search will fail being running on every value from the tree.

If the tree has multiple vertices with the same values on them then you should run algorithm on every one of them separately.

输入格式

First line contains integer number nn ( 1<=n<=1051<=n<=10^{5} ) — number of vertices in the tree.

Each of the next nn lines contains 33 numbers vv , ll , rr ( 0<=v<=1090<=v<=10^{9} ) — value on current vertex, index of the left child of the vertex and index of the right child of the vertex, respectively. If some child doesn't exist then number 1-1 is set instead. Note that different vertices of the tree may contain the same values.

输出格式

Print number of times when search algorithm will fail.

输入输出样例

  • 输入#1

    3
    15 -1 -1
    10 1 3
    5 -1 -1
    

    输出#1

    2
    
  • 输入#2

    8
    6 2 3
    3 4 5
    12 6 7
    1 -1 8
    4 -1 -1
    5 -1 -1
    14 -1 -1
    2 -1 -1
    

    输出#2

    1
    

说明/提示

In the example the root of the tree in vertex 22 . Search of numbers 55 and 1515 will return fail because on the first step algorithm will choose the subtree which doesn't contain numbers you are looking for.

首页