-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path779.k-th-symbol-in-grammar.cpp
61 lines (61 loc) · 1.14 KB
/
779.k-th-symbol-in-grammar.cpp
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
/*
* @lc app=leetcode id=779 lang=cpp
*
* [779] K-th Symbol in Grammar
*
* https://leetcode.com/problems/k-th-symbol-in-grammar/description/
*
* algorithms
* Medium (37.81%)
* Total Accepted: 10.6K
* Total Submissions: 28.1K
* Testcase Example: '1\n1'
*
* 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)].
*
*
*/
class Solution
{
public:
int kthGrammar(int N, int K)
{
if (N == 1)
return 0;
if (K < 2)
return K;
return kthGrammar(N - 1, (K + 1) / 2) ? K & 1 : !(K & 1);
}
};