ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

0526. Beautiful Arrangement (M)

2021-01-03 21:33:24  阅读:219  来源: 互联网

标签:Beautiful beautiful 0526 ith int Number Arrangement divisible position


Beautiful Arrangement (M)

题目

Suppose you have n integers from 1 to n. We define a beautiful arrangement as an array that is constructed by these n numbers successfully if one of the following is true for the ith position (1 <= i <= n) in this array:

  • The number at the ith position is divisible by i.
  • i is divisible by the number at the ith position.

Given an integer n, return the number of the beautiful arrangements that you can construct.

Example 1:

Input: n = 2
Output: 2
Explanation: 
The first beautiful arrangement is [1, 2]:
Number at the 1st position (i=1) is 1, and 1 is divisible by i (i=1).
Number at the 2nd position (i=2) is 2, and 2 is divisible by i (i=2).
The second beautiful arrangement is [2, 1]:
Number at the 1st position (i=1) is 2, and 2 is divisible by i (i=1).
Number at the 2nd position (i=2) is 1, and i (i=2) is divisible by 1.

Example 2:

Input: n = 1
Output: 1

Constraints:

  • 1 <= n <= 15

题意

对1-n这n个数进行排列,使得对于序列中第i个数字x满足i是x的倍数或者x是i的倍数。

思路

回溯法,对1-n每个位置挑选一个满足的数字放上去,判断最终得到的序列是否有效。


代码实现

Java

class Solution {
    public int countArrangement(int n) {
        return dfs(1, n, new boolean[n + 1]);
    }

    private int dfs(int index, int n, boolean[] used) {
        if (index == n + 1) {
            return 1;
        }

        int count = 0;
        for (int i = 1; i <= n; i++) {
            if (!used[i] && (index % i == 0 || i % index == 0)) {
                used[i] = true;
                count += dfs(index + 1, n, used);
                used[i] = false;
            }
        }

        return count;
    }
}

标签:Beautiful,beautiful,0526,ith,int,Number,Arrangement,divisible,position
来源: https://www.cnblogs.com/mapoos/p/14226982.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有