A10912 | Broken BST
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Let $T$ 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 $T$ :
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:
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.
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 $n$ ( $1<=n<=10^{5}$ ) — number of vertices in the tree.
Each of the next $n$ lines contains $3$ numbers $v$ , $l$ , $r$ ( $0<=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$ is set instead. Note that different vertices of the tree may contain the same values.
Each of the next $n$ lines contains $3$ numbers $v$ , $l$ , $r$ ( $0<=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$ 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 $2$ . Search of numbers $5$ and $15$ will return fail because on the first step algorithm will choose the subtree which doesn't contain numbers you are looking for.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted