Children of a node EASY Arbori (BAC) 10 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, in ascending order, the indices of the direct children of node `x`. If node `x` has no direct children (it is a leaf), print the word `frunza` (no diacritics).

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

Output format

Output output.txt

The program prints the direct children of node `x` in ascending order, separated by spaces. If node `x` is a leaf, the program prints `frunza`.

Example

input
7 4

2 4 4 0 4 5 5
output
2 3 5

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