forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_779.java
74 lines (61 loc) · 1.59 KB
/
_779.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package com.fishercoder.solutions;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* 779. K-th Symbol in Grammar
*
* On the first row, we write a 0. Now in every subsequent row,
* we look at the previous row and replace each occurrence of 0 with 01, and each occurrence of 1 with 10.
* Given row N and index K, return the K-th indexed symbol in row N. (The values of K are 1-indexed.) (1 indexed).
Examples:
Input: N = 1, K = 1
Output: 0
Input: N = 2, K = 1
Output: 0
Input: N = 2, K = 2
Output: 1
Input: N = 4, K = 5
Output: 1
Explanation:
row 1: 0
row 2: 01
row 3: 0110
row 4: 01101001
Note:
N will be an integer in the range [1, 30].
K will be an integer in the range [1, 2^(N-1)].
*/
public class _779 {
public static class Solution1 {
/**Time: O(2^n)
* Space: O(2^n)
* This will result int TLE.*/
public int kthGrammar(int N, int K) {
List<List<Integer>> lists = new ArrayList<>();
lists.add(Arrays.asList(0));
for (int i = 1; i <= N; i++) {
List<Integer> curr = new ArrayList<>();
List<Integer> prev = lists.get(i - 1);
for (int j = 0; j < prev.size(); j++) {
if (prev.get(j) == 0) {
curr.add(0);
curr.add(1);
} else {
curr.add(1);
curr.add(0);
}
}
lists.add(curr);
}
return lists.get(N).get(K - 1);
}
}
public static class Solution2 {
/**Time: O(logn)
* Space: O(1)*/
public int kthGrammar(int N, int K) {
return Integer.bitCount(K - 1) % 2;
}
}
}