Path from node to root MEDIUM Arbori (BAC) 25 XP 0 solved
Mobile coding works. A laptop is faster for long sessions.

Problem

A tree with `n` nodes numbered from `1` to `n` is represented by the parent array `t`, where `t[i]` is the parent of node `i`, and `t[i] = 0` means that node `i` is the root of the tree. An additional natural number `x` with `1 <= x <= n` is also read. Print the path from node `x` to the root, starting with `x` and ending with the root, following edges upward.

Input format

Input input.txt

The first line contains two natural numbers `n` and `x`, separated by a space. The second line contains the `n` values of the parent array, separated by spaces. - `1 <= n <= 100` - `1 <= x <= n` - the array describes a valid tree - if `x` is the root, print only `x`

Output format

Output output.txt

The program prints the indices of the nodes on the path from `x` to the root, separated by spaces, in order: `x`, parent of `x`, grandparent of `x`, ..., root.

Example

input
7 1

2 4 4 0 4 5 5
output
1 2 4

Ready to solve this challenge?

Create a free account to write code, submit solutions, and track your progress.

⌨️ Keyboard Shortcuts

Code Editor
Run Code
Ctrl Enter
Submit Code
Ctrl Shift Enter
Format Code
Shift Alt F
Toggle Comment
Ctrl /
Undo
Ctrl Z
Redo
Ctrl Y
Navigation
Global Search
/
Show Shortcuts
?
Close Modal
Esc

🔍 Interactive Debugger

0 / 0

Analyzing your code...

📦 Variables

No variables yet

📚 Call Stack
main() line 1
📤 Output
We use cookies

Essential cookies are always active. You can choose to enable preference and analytics cookies. Learn more