LeetCode-932. Beautiful Array [C++][Java]

Loading...https://leetcode.com/problems/beautiful-array/

题目描述

An array nums of length n is beautiful if:

  • nums is a permutation of the integers in the range [1, n].
  • For every 0 <= i < j < n, there is no index k with i < k < j where 2 * nums[k] == nums[i] + nums[j].

Given the integer n, return any beautiful array nums of length n. There will be at least one valid answer for the given n.

Example 1:

Input: n = 4
Output: [2,1,4,3]

Example 2:

Input: n = 5
Output: [3,1,2,5,4]

Constraints:

  • 1 <= n <= 1000

解题思路

【C++】

class Solution {
public:
    vector<int> beautifulArray(int n) {
        if (n == 1) return {1};
        auto left = beautifulArray(n / 2);
        auto right = beautifulArray(n - (n / 2));
        vector<int> res;
        for (auto l : left) {res.push_back(l * 2);}
        for (auto r : right) {res.push_back(r * 2 - 1);}
        return res;
    }
};

【Java】

class Solution {
    public int[] beautifulArray(int n) {
        int[] answer = new int[n]; 
        if (n == 1) {
            answer[0] = 1;
            return answer;
        }
        int[] left = beautifulArray(n/2);
        int[] right = beautifulArray((n+1)/2);
        for(int i=0; i<left.length; i++) {
            answer[i] = left[i] * 2; 
        }
        for (int i=left.length; i<n; i++) { 
            answer[i] = right[i-left.length] * 2 - 1;     
        }
        return answer;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

贫道绝缘子

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值