Leetcode 1029. Binary Prefix Divisible By 5

Given an array A of 0s and 1s, consider N_i: the i-th subarray from A[0] to A[i] interpreted as a binary number (from most-significant-bit to least-significant-bit.)

Return a list of booleans answer, where answer[i] is true if and only if N_i is divisible by 5.

Example 1:

Input: [0,1,1]
Output: [true,false,false]
Explanation: 
The input numbers in binary are 0, 01, 011; which are 0, 1, and 3 in base-10.  Only the first number is divisible by 5, so answer[0] is true.

Example 2:

Input: [1,1,1]
Output: [false,false,false]

Example 3:

Input: [0,1,1,1,1,1]
Output: [true,false,false,false,true,false]

Example 4:

Input: [1,1,1,0,1]
Output: [false,false,false,false,false]

 

Note:

  1. 1 <= A.length <= 30000
  2. A[i] is 0 or 1

方法一:利用大数整数

public List<Boolean> prefixesDivBy5(int[] A) {
        ArrayList<Boolean> res = new ArrayList<>(A.length);
        BigInteger bInt = BigInteger.ZERO;
        for (int i = 0; i < A.length; i++) {
            bInt = bInt.shiftLeft(1).add(A[i] == 1 ? BigInteger.ONE : BigInteger.ZERO);
            res.add(bInt.mod(BigInteger.valueOf(5l)) == BigInteger.ZERO);
        }
        return res;
    }

方法二:利用余数规律

public static List<Boolean> prefixesDivBy5(int[] A) {
        ArrayList<Boolean> res = new ArrayList<>(A.length);
        // pair's key is the reminder when meet '0';
        // pair's val is the reminder when meet '1'.
        // stateDict's index(0,1,2,3,4) is the possible reminder
        Pair<Integer, Integer>[] stateDic = new Pair[]{
                new Pair<>(0,1),
                new Pair<>(2,3),
                new Pair<>(4,0),
                new Pair<>(1,2),
                new Pair<>(3,4),
        };
        int state = 0;
        for (int i = 0; i < A.length; i++) {
            state = A[i] == 0 ? stateDic[state].getKey() : stateDic[state].getValue();
            res.add(state == 0);
        }
        return res;
    }

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值