📌  相关文章
📜  检查数字N是否可以在基数B中表示

📅  最后修改于: 2021-05-04 08:57:03             🧑  作者: Mango

给定数N和任何底数B。任务是检查N是否可以a 1 * b 0 + a 2 * b 1 + a 3 * b 2 +…。+ a 101 * b 100的形式表示,其中每个系数a 1 ,a 2 ,a 3 …a 1010、1或-1

例子:

方法:以下是步骤:

  • 如果N的基B表示仅由0和1组成,则答案存在。
  • 如果不满足上述条件,则从低位数字迭代到高位数字,如果该数字不等于0或1,则尝试从中减去B的适当幂并递增高位数字。
  • 如果它等于-1 ,那么我们可以减去该幂数,如果等于0,那么在其他情况下,只需忽略就不可能以所需的形式表示该数字。

下面是上述方法的实现:

C++
// C++ program for the above approach
#include 
using namespace std;
 
// Function to check if a number
// N can be expressed in base B
bool check(int n, int w)
{
    vector a(105);
    int p = 0;
 
    // Check if n is greater than 0
    while (n > 0) {
        a[p++] = n % w;
        n /= w;
    }
 
    // Initialize a boolean variable
    bool flag = true;
 
    for (int i = 0; i <= 100; i++) {
 
        // Check if digit is 0 or 1
        if (a[i] == 0 || a[i] == 1)
            continue;
 
        // Subtract the appropriate
        // power of B from it and
        // increment higher digit
        else if (a[i] == w
                 || a[i] == w - 1)
            a[i + 1]++;
 
        else
            flag = false;
    }
 
    return flag;
}
 
// Driver Code
int main()
{
    // Given Number N and base B
    int B = 3, N = 7;
 
    // Function Call
    if (check(N, B))
        cout << "Yes";
    else
        cout << "No";
 
    return 0;
}


Java
// Java program for the above approach
class GFG{
 
// Function to check if a number
// N can be expressed in base B
static boolean check(int n, int w)
{
    int[] a = new int[105];
    int p = 0;
 
    // Check if n is greater than 0
    while (n > 0)
    {
        a[p++] = n % w;
        n /= w;
    }
 
    // Initialize a boolean variable
    boolean flag = true;
 
    for(int i = 0; i <= 100; i++)
    {
         
        // Check if digit is 0 or 1
        if (a[i] == 0 || a[i] == 1)
            continue;
 
        // Subtract the appropriate
        // power of B from it and
        // increment higher digit
        else if (a[i] == w || a[i] == w - 1)
            a[i + 1]++;
 
        else
            flag = false;
    }
    return flag;
}
 
// Driver Code
public static void main(String[] args)
{
     
    // Given number N and base B
    int B = 3, N = 7;
 
    // Function call
    if (check(N, B))
        System.out.print("Yes");
    else
        System.out.print("No");
}
}
 
// This code is contributed by gauravrajput1


Python3
# Python3 program for the above approach
 
# Function to check if a number
# N can be expressed in base B
def check(n, w):
     
    a = [0 for i in range(105)];
    p = 0
  
    # Check if n is greater than 0
    while (n > 0):
        a[p] = n % w
        p += 1
        n //= w
         
    # Initialize a boolean variable
    flag = True
  
    for i in range(101):
          
        # Check if digit is 0 or 1
        if (a[i] == 0 or a[i] == 1):
            continue
  
        # Subtract the appropriate
        # power of B from it and
        # increment higher digit
        elif (a[i] == w or a[i] == w - 1):
            a[i + 1] += 1
        else:
            flag = False
     
    return flag
 
# Driver code
if __name__=="__main__":
     
    # Given number N and base B
    B = 3
    N = 7
  
    # Function call
    if (check(N, B)):
        print("Yes")
    else:
        print("No")
 
# This code is contributed by rutvik_56


C#
// C# program for the above approach
using System;
 
class GFG{
 
// Function to check if a number
// N can be expressed in base B
static bool check(int n, int w)
{
    int[] a = new int[105];
    int p = 0;
 
    // Check if n is greater than 0
    while (n > 0)
    {
        a[p++] = n % w;
        n /= w;
    }
 
    // Initialize a bool variable
    bool flag = true;
 
    for(int i = 0; i <= 100; i++)
    {
         
        // Check if digit is 0 or 1
        if (a[i] == 0 || a[i] == 1)
            continue;
 
        // Subtract the appropriate
        // power of B from it and
        // increment higher digit
        else if (a[i] == w || a[i] == w - 1)
            a[i + 1]++;
 
        else
            flag = false;
    }
    return flag;
}
 
// Driver Code
public static void Main(String[] args)
{
     
    // Given number N and base B
    int B = 3, N = 7;
 
    // Function call
    if (check(N, B))
        Console.Write("Yes");
    else
        Console.Write("No");
}
}
 
// This code is contributed by amal kumar choubey


Javascript


输出:
Yes

时间复杂度: O(log B N)
辅助空间: O(1)