zoukankan      html  css  js  c++  java
  • Codeforces Round #596 (Div. 2, based on Technocup 2020 Elimination Round 2) C. p-binary

    链接:

    https://codeforces.com/contest/1247/problem/C

    题意:

    Vasya will fancy any number as long as it is an integer power of two. Petya, on the other hand, is very conservative and only likes a single integer p (which may be positive, negative, or zero). To combine their tastes, they invented p-binary numbers of the form 2x+p, where x is a non-negative integer.

    For example, some −9-binary ("minus nine" binary) numbers are: −8 (minus eight), 7 and 1015 (−8=20−9, 7=24−9, 1015=210−9).

    The boys now use p-binary numbers to represent everything. They now face a problem: given a positive integer n, what's the smallest number of p-binary numbers (not necessarily distinct) they need to represent n as their sum? It may be possible that representation is impossible altogether. Help them solve this problem.

    For example, if p=0 we can represent 7 as 20+21+22.

    And if p=−9 we can represent 7 as one number (24−9).

    Note that negative p-binary numbers are allowed to be in the sum (see the Notes section for an example).

    思路:

    枚举使用的个数,判断n-i*p能不能满足条件。

    代码:

    #include <bits/stdc++.h>
    typedef long long LL;
    using namespace std;
     
    LL n, p;
     
    int Cal(LL x)
    {
        int cnt = 0;
        while (x)
        {
            if (x&1)
                cnt++;
            x >>= 1;
        }
        return cnt;
    }
     
    int main()
    {
        ios::sync_with_stdio(false);
        cin >> n >> p;
        for (int i = 1;i <= 1e4;i++)
        {
            LL v = n-p*i;
            if (v <= 0)
                break;
            int num = Cal(v);
            if (num <= i && i <= v)
            {
                cout << i << endl;
                return 0;
            }
        }
        cout << -1 << endl;
     
        return 0;
    }
    
  • 相关阅读:
    MySQL主从复制与读写分离
    MySQL主从同步、读写分离配置步骤
    c# 无损压缩图片,接口传过来的是字节
    C# 和JAVA AES加密之间的互相兼容,C#版
    list的线程非安全性
    webrequesthelper
    .net core 实现微信登陆
    .net core 实现QQ登陆网站
    c# 深拷贝
    在H+框架下的一个给iframe 的body 添加事件。
  • 原文地址:https://www.cnblogs.com/YDDDD/p/11772286.html
Copyright © 2011-2022 走看看