码迷,mamicode.com
首页 > 其他好文 > 详细

779. K-th Symbol in Grammar

时间:2018-11-27 10:12:08      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:col   reverse   hal   code   rev   solution   false   public   lse   

class Solution {
public:
    int kthGrammar(int N, int K) {
        return helper(N, K, false);
    }
    int helper(int n, int k, bool reverse) {
        if (n == 1) return reverse;
        int total = 1 << (n-1);
        int half = total >> 1;
        if (k <= half)
            return helper(n-1, k, reverse);
        else
            return helper(n-1, k-half, !reverse);
    }
};

/*
lvl1: 0
lvl2: 0 1
lvl3: 0 1 1 0
lvl4: 0 1 1 0   1 0 0 1
lvl5: 0 1 1 0   1 0 0 1   1 0 0 1   0 1 1 0
      0 1 1 0   1 0 0 1   1 0 0 1   0 1 1 0   1 0 0 1   0 1 1 0   0 1 1 0   1 0 0 1
      */

 

779. K-th Symbol in Grammar

标签:col   reverse   hal   code   rev   solution   false   public   lse   

原文地址:https://www.cnblogs.com/JTechRoad/p/10024230.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!