📜  查找最接近x或a ^ b的x的倍数(a升为幂b)

📅  最后修改于: 2021-04-29 08:09:10             🧑  作者: Mango

我们给了3个数字a,b和x。我们需要输出最接近a ^ b的x的倍数。
注意: b可以是负数
例子 :

Input : x = 2, a = 4, b = -2
Output : 0
Explanation : a^b = 1/16. 
Closest multiple of 2 to 1/16 is 0.

Input : x = 4, a = 349, b = 1
Output : 348
Explanation :a^b = 349
The closest multiple of 4 to 349 is 348.

观察结果:

1. When b is negative and a is 1, then a ^ b turns out 
to be 1 and hence, closest multiple of x becomes either
 x * 0 or x * 1.

2. When b is negative and a is more than 1, then a ^ b
turns out to be less than 1 and hence closest multiple
of x becomes 0.

3. When b is positive, calculate a ^ b, then let 
mul = Integer (a^b / x), then closest multiple of x is 
mul * x or (mul + 1) * x.
C++
// C++ Program to find closest
// multiple of x to a^b
#include 
using namespace std;
 
// function to find closest multiple 
// of x to a^b
void multiple(int a, int b, int x)
{   
    if (b < 0) {
        if (a == 1 && x == 1)
            cout << "1";
 
        else
            cout << "0";
    }
 
    // calculate a ^ b / x
    int mul = pow(a, b);
     
    int ans = mul / x;
     
    // Answer is either (ans * x) or
    // (ans + 1) * x
    int ans1 = x * ans;
    int ans2 = x * (ans + 1);
 
    // Printing nearest answer
    cout << (((mul - ans1) <= (ans2 - mul)) ?
                                ans1 : ans2);
}
 
// Driver Program
int main()
{
    int a = 349, b = 1, x = 4;
 
    multiple(a, b, x);
    return 0;
}


Java
// java Program to find closest
// multiple of x to a^b
import java.io.*;
 
public class GFG {
 
    // function to find closest
    // multiple of x to a^b
    static void multiple(int a, int b, int x)
    {
        if (b < 0)
        {
            if (a == 1 && x == 1)
                System.out.println("1");
            else
                System.out.println("0");
        }
     
        // calculate a ^ b / x
        int mul = (int)Math.pow(a, b);
         
        int ans = mul / x;
         
        // Answer is either (ans * x) or
        // (ans + 1) * x
        int ans1 = x * ans;
        int ans2 = x * (ans + 1);
     
        // Printing nearest answer
        System.out.println(((mul - ans1)
                        <= (ans2 - mul))
                         ? ans1 : ans2);
    }
     
    // Driver Program
    static public void main (String[] args)
    {
        int a = 349, b = 1, x = 4;
 
        multiple(a, b, x);
    }
}
 
// This code is contributed by vt_m.


C#
// C# Program to find closest
// multiple of x to a^b
using System;
 
public class GFG {
         
    // function to find closest multiple
    // of x to a^b
    static void multiple(int a, int b, int x)
    {
        if (b < 0) {
            if (a == 1 && x == 1)
                Console.WriteLine("1");
     
            else
                Console.WriteLine("0");
        }
     
        // calculate a ^ b / x
        int mul = (int)Math.Pow(a, b);
         
        int ans = mul / x;
         
        // Answer is either (ans * x) or
        // (ans + 1) * x
        int ans1 = x * ans;
        int ans2 = x * (ans + 1);
     
        // Printing nearest answer
        Console.WriteLine(((mul - ans1)
                       <= (ans2 - mul))
                         ? ans1 : ans2);
    }
     
    // Driver Program
    static public void Main ()
    {
        int a = 349, b = 1, x = 4;
 
        multiple(a, b, x);
    }
}
 
// This code is contributed by vt_m.


PHP


Python3
# Python3 Program to
# find closest multiple
# of x to a^b
import math
 
# function to find closest
# multiple of x to a^b
def multiple(a, b, x):
    if (b < 0):
        if (a == 1 and x == 1):
            print("1");
        else:
            print("0");
             
    # calculate a ^ b / x
    mul = int(pow(a, b));
     
    ans = int(mul / x);
     
    # Answer is either (ans * x)
    # or (ans + 1) * x
    ans1 = x * ans;
    ans2 = x * (ans + 1);
     
    # Printing nearest answer
    if ((mul - ans1) <= (ans2 - mul)):
        print(ans1);
    else:
        print(ans2);
 
# Driver Code
a = 349;
b = 1;
x = 4;
multiple(a, b, x);
 
# This code is contributed
# by mits


Javascript


输出:

348