鱼C论坛

 找回密码
 立即注册
查看: 1895|回复: 0

[学习笔记] Google foobar challenge

[复制链接]
发表于 2019-8-12 09:36:42 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
Level 3:

67838013_400022300647778_7341441354863476736_n.png


起初的想法是用dp来解,但是问题来了,input的数可以最多有309位数字,是一个非常大的数,但是一个array 或者 arraylist  的 limits 是 2^31 - 1, 也就是说根本无法储存,所以要引入BigInteger 类来处理此问题。

Here is the solution:
import java.math.BigInteger;

public class main {

    public static void main(String[] args){

        String x = "13";

        BigInteger leng = new BigInteger(x);

        BigInteger one = new BigInteger("1");

        BigInteger _one = new BigInteger("-1");

//        leng = leng.add(_one);

//        System.out.println(leng.toString(2));

        String test = leng.toString(2);

//        System.out.println(leng.toString(2));
//
//        System.out.println(leng.bitLength());

        int count = 0;

        while(leng.bitLength() !=1){

            int lowestSetbit = leng.getLowestSetBit();

//            System.out.println(check_add(leng.toString(2)));

            if(check_add(leng.toString(2))  && leng.bitLength() != 2){

//                System.out.println(1);

                leng = leng.add(one);

                count = count + 1 ;


            }

            else{

                if(lowestSetbit >= 1){

                    count++;

                    leng = leng.shiftRight(1);

//                    System.out.println(leng.toString(2));
//                    System.out.println(lowestSetbit);

                }
                else{

                    leng = leng.add(_one);

                    count = count + 1;

//                    System.out.println(leng.toString(2));
                }
            }
        }

        System.out.println(count);

//        return count;
    }

    private static boolean check_add(String x){

        boolean need_add = true;

        for(int i = 0 ; i < x.length(); i++){

//            System.out.println(x.substring(i,i+1));

            if(Integer.parseInt(x.substring(i,i+1)) != 1){

//                System.out.println("22222");

                need_add = false;
            }

        }

        return need_add;
    }

}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-23 03:52

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表