返回介绍

solution / 0900-0999 / 0932.Beautiful Array / README_EN

发布于 2024-06-17 01:03:33 字数 2967 浏览 0 评论 0 收藏 0

932. Beautiful Array

中文文档

Description

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

Solutions

Solution 1

class Solution:
  def beautifulArray(self, n: int) -> List[int]:
    if n == 1:
      return [1]
    left = self.beautifulArray((n + 1) >> 1)
    right = self.beautifulArray(n >> 1)
    left = [x * 2 - 1 for x in left]
    right = [x * 2 for x in right]
    return left + right
class Solution {
  public int[] beautifulArray(int n) {
    if (n == 1) {
      return new int[] {1};
    }
    int[] left = beautifulArray((n + 1) >> 1);
    int[] right = beautifulArray(n >> 1);
    int[] ans = new int[n];
    int i = 0;
    for (int x : left) {
      ans[i++] = x * 2 - 1;
    }
    for (int x : right) {
      ans[i++] = x * 2;
    }
    return ans;
  }
}
class Solution {
public:
  vector<int> beautifulArray(int n) {
    if (n == 1) return {1};
    vector<int> left = beautifulArray((n + 1) >> 1);
    vector<int> right = beautifulArray(n >> 1);
    vector<int> ans(n);
    int i = 0;
    for (int& x : left) ans[i++] = x * 2 - 1;
    for (int& x : right) ans[i++] = x * 2;
    return ans;
  }
};
func beautifulArray(n int) []int {
  if n == 1 {
    return []int{1}
  }
  left := beautifulArray((n + 1) >> 1)
  right := beautifulArray(n >> 1)
  var ans []int
  for _, x := range left {
    ans = append(ans, x*2-1)
  }
  for _, x := range right {
    ans = append(ans, x*2)
  }
  return ans
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文