carloscn / structstudy

Leetcode daily trainning by using C/C++/RUST programming.
4 stars 1 forks source link

leetcode1640:能否连接形成数组(check-array-formation-through-concatenation) #259

Open carloscn opened 1 year ago

carloscn commented 1 year ago

问题描述

给你一个整数数组 arr ,数组中的每个整数 互不相同 。另有一个由整数数组构成的数组 pieces,其中的整数也 互不相同 。请你以 任意顺序 连接 pieces 中的数组以形成 arr 。但是,不允许 对每个数组 pieces[i] 中的整数重新排序。

如果可以连接 pieces 中的数组形成 arr ,返回 true ;否则,返回 false 。

示例 1:

输入:arr = [15,88], pieces = [[88],[15]] 输出:true 解释:依次连接 [15] 和 [88]

示例 2:

输入:arr = [49,18,16], pieces = [[16,18,49]] 输出:false 解释:即便数字相符,也不能重新排列 pieces[0]

示例 3:

输入:arr = [91,4,64,78], pieces = [[78],[4,64],[91]] 输出:true 解释:依次连接 [91]、[4,64] 和 [78]  

提示:

1 <= pieces.length <= arr.length <= 100 sum(pieces[i].length) == arr.length 1 <= pieces[i].length <= arr.length 1 <= arr[i], pieces[i][j] <= 100 arr 中的整数 互不相同 pieces 中的整数 互不相同(也就是说,如果将 pieces 扁平化成一维数组,数组中的所有整数互不相同)

来源:力扣(LeetCode) 链接:https://leetcode.cn/problems/check-array-formation-through-concatenation

carloscn commented 1 year ago

问题分析

fn array_contain(arr: &Vec<i32>, pic: &Vec<i32>) -> bool
{
    if pic.len() > arr.len() {
        return false;
    } else if pic.len() == arr.len() {
        return *pic == *arr;
    }

    for i in 0..arr.len() - pic.len() + 1 {
        for j in 0..pic.len() {
            if arr[i + j] == pic[j] {
                return true;
            }
        }
    }

    return false;
}

pub fn can_form_array(arr: Vec<i32>, pieces: Vec<Vec<i32>>) -> bool
{
    if arr.len() < 1 || pieces.len() < 1 {
        return false;
    }

    for e in &pieces {
        if array_contain(&arr, e) == false {
            return false;
        }
    }

    return true;
}
carloscn commented 1 year ago

code

https://review.gerrithub.io/c/carloscn/structstudy/+/556109 https://github.com/carloscn/structstudy/commit/834c2fea24d7c6a5b91c2478a510dbb83573f80e