首页 > 其他 > 详细

leetcode481

时间:2017-05-11 16:39:27      阅读:308      评论:0      收藏:0      [点我收藏+]
public class Solution {
    public int MagicalString(int n) {
        if (n <= 0) return 0;
            if (n <= 3) return 1;

            int[] a = new int[n + 1];
            a[0] = 1; a[1] = 2; a[2] = 2;
            int head = 2, tail = 3, num = 1, result = 1;

            while (tail < n)
            {
                for (int i = 0; i < a[head]; i++)
                {
                    a[tail] = num;
                    if (num == 1 && tail < n)
                    {
                        result++;
                    }
                    tail++;
                }
                num = num ^ 3;//异或
                head++;
            }

            return result;
    }
}

https://leetcode.com/problems/magical-string/#/description

leetcode481

原文:http://www.cnblogs.com/asenyang/p/6841339.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!