|
2 | 2 |
|
3 | 3 | /**
|
4 | 4 | * 526. Beautiful Arrangement
|
| 5 | + * |
5 | 6 | * Suppose you have N integers from 1 to N.
|
6 | 7 | * We define a beautiful arrangement as an array that is constructed by these N numbers successfully
|
7 | 8 | * if one of the following is true for the ith position (1 ≤ i ≤ N) in this array:
|
8 |
| -
|
9 |
| - The number at the ith position is divisible by i. |
10 |
| - i is divisible by the number at the ith position. |
11 |
| - Now given N, how many beautiful arrangements can you construct? |
| 9 | + * The number at the ith position is divisible by i. |
| 10 | + * i is divisible by the number at the ith position. |
| 11 | + * Now given N, how many beautiful arrangements can you construct? |
12 | 12 |
|
13 | 13 | Example 1:
|
| 14 | +
|
14 | 15 | Input: 2
|
15 | 16 | Output: 2
|
16 | 17 |
|
17 | 18 | Explanation:
|
18 | 19 |
|
19 | 20 | The first beautiful arrangement is [1, 2]:
|
20 |
| -
|
21 | 21 | Number at the 1st position (i=1) is 1, and 1 is divisible by i (i=1).
|
22 |
| -
|
23 | 22 | Number at the 2nd position (i=2) is 2, and 2 is divisible by i (i=2).
|
24 | 23 |
|
25 | 24 | The second beautiful arrangement is [2, 1]:
|
26 |
| -
|
27 | 25 | Number at the 1st position (i=1) is 2, and 2 is divisible by i (i=1).
|
28 |
| -
|
29 | 26 | Number at the 2nd position (i=2) is 1, and i (i=2) is divisible by 1.
|
30 | 27 |
|
31 | 28 | Note:
|
32 | 29 | N is a positive integer and will not exceed 15.
|
33 | 30 | */
|
34 | 31 | public class _526 {
|
35 |
| - /**A good post to look at: https://discuss.leetcode.com/topic/79916/java-solution-backtracking |
36 |
| - * and there's a generic template afterwards for backtracking problems*/ |
| 32 | + public static class Solution1 { |
| 33 | + /** |
| 34 | + * A good post to look at: https://discuss.leetcode.com/topic/79916/java-solution-backtracking |
| 35 | + * and there's a generic template afterwards for backtracking problems |
| 36 | + */ |
37 | 37 |
|
38 |
| - int count = 0; |
| 38 | + int count = 0; |
39 | 39 |
|
40 |
| - public int countArrangement(int N) { |
41 |
| - backtracking(N, new int[N + 1], 1); |
42 |
| - return count; |
43 |
| - } |
44 |
| - |
45 |
| - private void backtracking(int N, int[] used, int pos) { |
46 |
| - if (pos > N) { |
47 |
| - count++; |
48 |
| - return; |
| 40 | + public int countArrangement(int N) { |
| 41 | + backtracking(N, new int[N + 1], 1); |
| 42 | + return count; |
49 | 43 | }
|
50 |
| - for (int i = 1; i <= N; i++) { |
51 |
| - if (used[i] == 0 && (i % pos == 0 || pos % i == 0)) { |
52 |
| - used[i] = 1; |
53 |
| - backtracking(N, used, pos + 1); |
54 |
| - used[i] = 0; |
| 44 | + |
| 45 | + private void backtracking(int N, int[] used, int pos) { |
| 46 | + if (pos > N) { |
| 47 | + count++; |
| 48 | + return; |
| 49 | + } |
| 50 | + |
| 51 | + for (int i = 1; i <= N; i++) { |
| 52 | + if (used[i] == 0 && (i % pos == 0 || pos % i == 0)) { |
| 53 | + used[i] = 1; |
| 54 | + backtracking(N, used, pos + 1); |
| 55 | + used[i] = 0; |
| 56 | + } |
55 | 57 | }
|
56 | 58 | }
|
57 | 59 | }
|
|
0 commit comments