LeetCode in Kotlin

971. Flip Binary Tree To Match Preorder Traversal

Medium

You are given the root of a binary tree with n nodes, where each node is uniquely assigned a value from 1 to n. You are also given a sequence of n values voyage, which is the desired pre-order traversal of the binary tree.

Any node in the binary tree can be flipped by swapping its left and right subtrees. For example, flipping node 1 will have the following effect:

Flip the smallest number of nodes so that the pre-order traversal of the tree matches voyage.

Return a list of the values of all flipped nodes. You may return the answer in any order. If it is impossible to flip the nodes in the tree to make the pre-order traversal match voyage, return the list [-1].

Example 1:

Input: root = [1,2], voyage = [2,1]

Output: [-1]

Explanation: It is impossible to flip the nodes such that the pre-order traversal matches voyage.

Example 2:

Input: root = [1,2,3], voyage = [1,3,2]

Output: [1]

Explanation: Flipping node 1 swaps nodes 2 and 3, so the pre-order traversal matches voyage.

Example 3:

Input: root = [1,2,3], voyage = [1,2,3]

Output: []

Explanation: The tree’s pre-order traversal already matches voyage, so no nodes need to be flipped.

Constraints:

Solution

import com_github_leetcode.TreeNode

/*
 * Example:
 * var ti = TreeNode(5)
 * var v = ti.`val`
 * Definition for a binary tree node.
 * class TreeNode(var `val`: Int) {
 *     var left: TreeNode? = null
 *     var right: TreeNode? = null
 * }
 */
class Solution {
    private val list: MutableList<Int> = ArrayList()
    private var preIndex = 0
    private var isFlipPossible = true

    fun flipMatchVoyage(root: TreeNode?, voyage: IntArray): List<Int> {
        list.clear()
        preIndex = 0
        isFlipPossible = true
        traverse(root, voyage)
        if (!isFlipPossible) {
            list.clear()
            list.add(-1)
        }
        return list
    }

    private fun traverse(root: TreeNode?, voyage: IntArray) {
        if (root == null) {
            return
        }
        if (root.`val` != voyage[preIndex]) {
            isFlipPossible = false
        } else {
            if (preIndex + 1 < voyage.size && root.left != null && root.left!!.`val` != voyage[preIndex + 1]) {
                // swap
                list.add(root.`val`)
                val temp = root.right
                root.right = root.left
                root.left = temp
            }
            preIndex++
            traverse(root.left, voyage)
            traverse(root.right, voyage)
        }
    }
}