Skip to content

Commit db4af71

Browse files
committedNov 18, 2017
[N-0] refactor 526
1 parent 5d2033a commit db4af71

File tree

2 files changed

+54
-25
lines changed

2 files changed

+54
-25
lines changed
 

‎src/main/java/com/fishercoder/solutions/_526.java

+27-25
Original file line numberDiff line numberDiff line change
@@ -2,56 +2,58 @@
22

33
/**
44
* 526. Beautiful Arrangement
5+
*
56
* Suppose you have N integers from 1 to N.
67
* We define a beautiful arrangement as an array that is constructed by these N numbers successfully
78
* 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?
1212
1313
Example 1:
14+
1415
Input: 2
1516
Output: 2
1617
1718
Explanation:
1819
1920
The first beautiful arrangement is [1, 2]:
20-
2121
Number at the 1st position (i=1) is 1, and 1 is divisible by i (i=1).
22-
2322
Number at the 2nd position (i=2) is 2, and 2 is divisible by i (i=2).
2423
2524
The second beautiful arrangement is [2, 1]:
26-
2725
Number at the 1st position (i=1) is 2, and 2 is divisible by i (i=1).
28-
2926
Number at the 2nd position (i=2) is 1, and i (i=2) is divisible by 1.
3027
3128
Note:
3229
N is a positive integer and will not exceed 15.
3330
*/
3431
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+
*/
3737

38-
int count = 0;
38+
int count = 0;
3939

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;
4943
}
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+
}
5557
}
5658
}
5759
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package com.fishercoder;
2+
3+
import com.fishercoder.solutions._526;
4+
import org.junit.BeforeClass;
5+
import org.junit.Test;
6+
7+
import static org.junit.Assert.assertEquals;
8+
9+
public class _526Test {
10+
private static _526.Solution1 solution1;
11+
12+
@BeforeClass
13+
public static void setup() {
14+
solution1 = new _526.Solution1();
15+
}
16+
17+
@Test
18+
public void test1() {
19+
assertEquals(2, solution1.countArrangement(2));
20+
}
21+
22+
@Test
23+
public void test2() {
24+
assertEquals(5, solution1.countArrangement(3));
25+
}
26+
27+
}

0 commit comments

Comments
 (0)
Please sign in to comment.