D. Make a Power of Two

D. Make a Power of Two

#739 (Div. 3)D. Make a Power of Two

You are given an integer n. In 1 move, you can do one of the following actions:

erase any digit of the number (it’s acceptable that the number before the operation has exactly one digit and after the operation, it is “empty”);
add one digit to the right.
The actions may be performed in any order any number of times.

Note that if, after deleting some digit from a number, it will contain leading zeroes, they will not be deleted. E.g. if you delete from the number 301 the digit 3, the result is the number 01 (not 1).

You need to perform the minimum number of actions to make the number any power of 2 (i.e. there’s an integer k (k≥0) such that the resulting number is equal to 2k). The resulting number must not have leading zeroes.

E.g. consider n=1052. The answer is equal to 2. First, let’s add to the right one digit 4 (the result will be 10524). Then let’s erase the digit 5, so the result will be 1024 which is a power of 2.

E.g. consider n=8888. The answer is equal to 3. Let’s erase any of the digits 8 three times. The result will be 8 which is a power of 2.

Input
The first line contains one integer t (1≤t≤104) — the number of test cases. Then t test cases follow.

Each test case consists of one line containing one integer n (1≤n≤109).

Output
For each test case, output in a separate line one integer m — the minimum number of moves to transform the number into any power of 2.

  • 输入
    12
    1052
    8888
    6
    75
    128
    1
    301
    12048
    1504
    6656
    1000000000
    687194767

  • 输出
    2
    3
    1
    3
    0
    0
    2
    1
    3
    4
    9
    2

  • Note
    The answer for the first test case was considered above.
    The answer for the second test case was considered above.
    In the third test case, it’s enough to add to the right the digit 4 — the number 6 will turn into 64.
    In the fourth test case, let’s add to the right the digit 8 and then erase 7 and 5 — the taken number will turn into 8.
    The numbers of the fifth and the sixth test cases are already powers of two so there’s no need to make any move.
    In the seventh test case, you can delete first of all the digit 3 (the result is 01) and then the digit 0 (the result is 1).

题目思路其实很水,就是预处理所有的2的幂数,然后进行一个一个的匹配
不过这里要注意,要处理整数范围内的所有数,不可以只处理32个

#include <bits/stdc++.h>
#define int long long
using namespace std;
const int N = 2e5 + 10;

vector<string>er;

int solve(string a,string b)
{
    int l=0;
    int m = a.size();
    int n = b.size();

    for(int i=0;i<m;i++)
    {
        if(a[i]==b[l])
            l++;
        if(l==n)
            break;
    }
    return n+m-2*l;
}

signed main()
{
    er.clear();
    int a=1;
    for(int i=0;i<61;i++)
    {
        er.push_back(to_string(a));
        a*=2;
    }

    int T;
    cin>>T;
    while(T--)
    {
        cin>>a;
        int ans=  1e9+10;

        int n = er.size();
        for(int i = 0 ;i<n;i++)
            ans = min(solve(to_string(a),er[i]),ans);
            
        cout<<ans<<endl;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

pig2687

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值