add: 221020-CN

This commit is contained in:
Eatswap 2022-10-20 21:24:21 +08:00
parent a7b808cb39
commit af18853bc3
Signed by: Eatswap
GPG Key ID: BE661106A1F3FA0B
2 changed files with 31 additions and 1 deletions

30
cpp/2210/221020-CN.cpp Normal file
View File

@ -0,0 +1,30 @@
#include <cstdio>
/**
* 779. K-th Symbol in Grammar
* We build a table of n rows (1-indexed). We start by writing 0 in the 1st row. 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.
* - For example, for n = 3, the 1st row is 0, the 2nd row is 01, and the 3rd row is 0110.
* Given two integer n and k, return the kth (1-indexed) symbol in the nth row of a table of n rows.
*/
class Solution {
public:
static int kthGrammar(int n, int k) {
--k;
int cur = 0;
while (--n)
cur ^= !!(k & (1 << (n - 1)));
return cur;
}
};
int main() {
std::printf("%d\n", Solution::kthGrammar(1, 1));
std::printf("%d\n", Solution::kthGrammar(2, 1));
std::printf("%d\n", Solution::kthGrammar(2, 2));
std::printf("%d\n", Solution::kthGrammar(3, 1));
std::printf("%d\n", Solution::kthGrammar(3, 2));
std::printf("%d\n", Solution::kthGrammar(3, 3));
std::printf("%d\n", Solution::kthGrammar(3, 4));
return 0;
}

View File

@ -3,4 +3,4 @@ PROJECT(2210)
SET(CMAKE_CXX_STANDARD 23) SET(CMAKE_CXX_STANDARD 23)
ADD_EXECUTABLE(2210 221019.cpp) ADD_EXECUTABLE(2210 221020-CN.cpp)